From 0c48dccdd878facb575d99b1e5d944d3eb2835df Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 2 Jul 2024 14:01:33 +0000 Subject: [PATCH] Update hyper requirement from 0.14 to 1.4 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.4.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 102c53f..6da0c07 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.4" snafu = "0.8" tokio = "1" diff --git a/tower-cgi/Cargo.toml b/tower-cgi/Cargo.toml index 760cf12..7503f58 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.4", default-features = false } snafu = "0.8" tower = { version = "0.4", default-features = false, features = ["util"] }