diff --git a/Cargo.lock b/Cargo.lock index b1d3942e259..9eed9c20fb4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3849,13 +3849,14 @@ dependencies = [ [[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 0.4.11", "http 1.3.1", "http-body 1.0.1", @@ -3863,6 +3864,7 @@ dependencies = [ "httpdate", "itoa", "pin-project-lite", + "pin-utils", "smallvec", "tokio", "want", @@ -3875,7 +3877,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58" dependencies = [ "http 1.3.1", - "hyper 1.6.0", + "hyper 1.7.0", "hyper-util", "log", "rustls", @@ -3898,7 +3900,7 @@ dependencies = [ "futures-util", "http 1.3.1", "http-body 1.0.1", - "hyper 1.6.0", + "hyper 1.7.0", "libc", "pin-project-lite", "socket2", @@ -3914,7 +3916,7 @@ dependencies = [ "cookie 0.18.1", "headers 0.4.1", "http 1.3.1", - "hyper 1.6.0", + "hyper 1.7.0", "mime", "serde", "serde_bytes", @@ -5414,7 +5416,7 @@ dependencies = [ "headers 0.4.1", "http 1.3.1", "http-body-util", - "hyper 1.6.0", + "hyper 1.7.0", "hyper-rustls", "hyper-util", "hyper_serde", diff --git a/Cargo.toml b/Cargo.toml index 2dcb622934f..7473fa5dda9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -80,7 +80,7 @@ hitrace = "0.1.5" html5ever = "0.35" http = "1.3" http-body-util = "0.1" -hyper = "1.6" +hyper = "1.7" hyper-rustls = { version = "0.27", default-features = false, features = ["http1", "http2", "logging", "tls12", "webpki-tokio"] } hyper-util = { version = "0.1", features = ["client-legacy", "http2", "tokio"] } hyper_serde = { path = "components/hyper_serde" }