From 9694bdbd19c5dd49323888489b4c3959171cd30a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 Oct 2025 21:02:56 +0000 Subject: [PATCH] build(deps): bump hyper from 1.6.0 to 1.7.0 Bumps [hyper](https://github.com/hyperium/hyper) from 1.6.0 to 1.7.0. - [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/v1.6.0...v1.7.0) --- updated-dependencies: - dependency-name: hyper dependency-version: 1.7.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 8 +++++--- Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index efadd43..c926585 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -436,13 +436,14 @@ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" [[package]] name = "hyper" -version = "1.6.0" +version = "1.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80" +checksum = "eb3aa54a13a0dfe7fbe3a59e0c76093041720fdc77b110cc0fc260fafb4dc51e" dependencies = [ + "atomic-waker", "bytes", "futures-channel", - "futures-util", + "futures-core", "h2", "http", "http-body", @@ -450,6 +451,7 @@ dependencies = [ "httpdate", "itoa", "pin-project-lite", + "pin-utils", "smallvec", "tokio", ] diff --git a/Cargo.toml b/Cargo.toml index 36c813f..5bec314 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,7 +24,7 @@ tracing = "0.1.41" tracing-subscriber = "0.3.19" tower = { version = "0.5.2", features = ["util"] } tower-http = { version = "0.6.6", features = ["fs", "trace"] } -hyper = { version = "1.6.0", features = ["server", "http1", "http2"] } +hyper = { version = "1.7.0", features = ["server", "http1", "http2"] } mime_guess = "2.0.5" mime = "0.3.17" base64 = "0.22.1"