From 36b1f8936bffeb1edc591eebfb63b7cc1e28b549 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 19 Dec 2023 07:53:58 +0000 Subject: [PATCH] Update hyper requirement from 0.14.12 to 1.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/v0.14.28/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.12...v0.14.28) --- updated-dependencies: - dependency-name: hyper dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- gotham/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gotham/Cargo.toml b/gotham/Cargo.toml index bfdf3a3b..7a3e36df 100644 --- a/gotham/Cargo.toml +++ b/gotham/Cargo.toml @@ -36,7 +36,7 @@ bytes = "1.0" cookie = "0.15" futures-util = "0.3.14" httpdate = "1.0" -hyper = { version = "0.14.12", features = ["http1", "runtime", "server", "stream"] } +hyper = { version = "1.1.0", features = ["http1", "runtime", "server", "stream"] } linked-hash-map = { version = "0.5.6", optional = true } log = "0.4" mime = "0.3.15"