diff --git a/Cargo.lock b/Cargo.lock index f32c34fdd2..7c3bf14507 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -972,7 +972,7 @@ version = "0.6.0" dependencies = [ "anyhow", "containerd-shim-wasm", - "hyper 1.6.0", + "hyper 1.8.1", "libc", "log", "reqwest 0.12.9", @@ -2475,13 +2475,14 @@ dependencies = [ [[package]] name = "hyper" -version = "1.6.0" +version = "1.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80" +checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11" dependencies = [ + "atomic-waker", "bytes", "futures-channel", - "futures-util", + "futures-core", "h2 0.4.6", "http 1.4.0", "http-body 1.0.1", @@ -2489,6 +2490,7 @@ dependencies = [ "httpdate", "itoa", "pin-project-lite", + "pin-utils", "smallvec", "tokio", "want", @@ -2516,7 +2518,7 @@ checksum = "08afdbb5c31130e3034af566421053ab03787c640246a446327f550d11bcb333" dependencies = [ "futures-util", "http 1.4.0", - "hyper 1.6.0", + "hyper 1.8.1", "hyper-util", "rustls 0.23.18", "rustls-pki-types", @@ -2544,7 +2546,7 @@ version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3203a961e5c83b6f5498933e78b6b263e208c197b63e9c6c53cc82ffd3f63793" dependencies = [ - "hyper 1.6.0", + "hyper 1.8.1", "hyper-util", "pin-project-lite", "tokio", @@ -2559,7 +2561,7 @@ checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0" dependencies = [ "bytes", "http-body-util", - "hyper 1.6.0", + "hyper 1.8.1", "hyper-util", "native-tls", "tokio", @@ -2578,7 +2580,7 @@ dependencies = [ "futures-util", "http 1.4.0", "http-body 1.0.1", - "hyper 1.6.0", + "hyper 1.8.1", "pin-project-lite", "socket2", "tokio", @@ -4664,7 +4666,7 @@ dependencies = [ "http 1.4.0", "http-body 1.0.1", "http-body-util", - "hyper 1.6.0", + "hyper 1.8.1", "hyper-rustls 0.27.3", "hyper-tls", "hyper-util", @@ -5972,7 +5974,7 @@ dependencies = [ "http 1.4.0", "http-body 1.0.1", "http-body-util", - "hyper 1.6.0", + "hyper 1.8.1", "hyper-timeout 0.5.1", "hyper-util", "percent-encoding", @@ -6254,7 +6256,7 @@ version = "1.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "97fee6b57c6a41524a810daee9286c02d7752c4253064d0b05472833a438f675" dependencies = [ - "cfg-if 0.1.10", + "cfg-if 1.0.4", "static_assertions", ] @@ -7501,7 +7503,7 @@ dependencies = [ "http 1.4.0", "http-body 1.0.1", "http-body-util", - "hyper 1.6.0", + "hyper 1.8.1", "rustls 0.22.4", "tokio", "tokio-rustls 0.25.0", diff --git a/Cargo.toml b/Cargo.toml index 5c77b888b8..add27363cf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -47,7 +47,7 @@ wat = "1.228" windows-sys = "0.59" serial_test = "3" tracing = "0.1" -hyper = "1.6.0" +hyper = "1.8.1" tokio = { version = "1.45.1", default-features = false } tokio-util = { version = "0.7", default-features = false } cfg-if = "1.0"