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"