From d0bb647da3c5cbdbb8e7580e4508e24312245da6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 19 Dec 2023 13:32:28 +0000 Subject: [PATCH] Update hyper requirement from 0.14 to 1.1 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.1.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..bc92e86 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.1" snafu = "0.7" tokio = "1" diff --git a/tower-cgi/Cargo.toml b/tower-cgi/Cargo.toml index 3f56918..296463c 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.1", default-features = false } snafu = "0.7" tower = { version = "0.4", default-features = false, features = ["util"] }