From 5647999a50f95e1782f3b4a7bf683fb3f4a93d5a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 16 Nov 2023 13:42:15 +0000 Subject: [PATCH] Update hyper requirement from 0.14 to 1.0 Updates the requirements on [hyper](https://github.com/hyperium/hyper) to permit the latest version. - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.0...v1.0.0) --- updated-dependencies: - dependency-name: hyper dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- cgi-rs/Cargo.toml | 2 +- tower-cgi/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cgi-rs/Cargo.toml b/cgi-rs/Cargo.toml index 9e24ab7..ccc4f04 100644 --- a/cgi-rs/Cargo.toml +++ b/cgi-rs/Cargo.toml @@ -4,6 +4,6 @@ version = "0.1.0" edition = "2021" [dependencies] -hyper = "0.14" +hyper = "1.0" snafu = "0.7" tokio = "1" diff --git a/tower-cgi/Cargo.toml b/tower-cgi/Cargo.toml index 3f56918..1248763 100644 --- a/tower-cgi/Cargo.toml +++ b/tower-cgi/Cargo.toml @@ -6,7 +6,7 @@ license = "Apache-2.0" [dependencies] cgi-rs = { path = "../cgi-rs" } -hyper = { version = "0.14", default-features = false } +hyper = { version = "1.0", default-features = false } snafu = "0.7" tower = { version = "0.4", default-features = false, features = ["util"] }