diff --git a/Cargo.lock b/Cargo.lock index fa7f15d7e..7767dab0c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1599,19 +1599,21 @@ 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.12", "http 1.3.1", "http-body 1.0.1", "httparse", "itoa", "pin-project-lite", + "pin-utils", "smallvec", "tokio", "want", @@ -1625,7 +1627,7 @@ checksum = "2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2" dependencies = [ "futures-util", "http 1.3.1", - "hyper 1.6.0", + "hyper 1.8.1", "hyper-util", "rustls", "rustls-pki-types", @@ -1643,7 +1645,7 @@ checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0" dependencies = [ "bytes", "http-body-util", - "hyper 1.6.0", + "hyper 1.8.1", "hyper-util", "native-tls", "tokio", @@ -1653,9 +1655,9 @@ dependencies = [ [[package]] name = "hyper-util" -version = "0.1.17" +version = "0.1.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c6995591a8f1380fcb4ba966a252a4b29188d51d2b89e3a252f5305be65aea8" +checksum = "52e9a2a24dc5c6821e71a7030e1e14b7b632acac55c40e9d2e082c621261bb56" dependencies = [ "base64", "bytes", @@ -1664,7 +1666,7 @@ dependencies = [ "futures-util", "http 1.3.1", "http-body 1.0.1", - "hyper 1.6.0", + "hyper 1.8.1", "ipnet", "libc", "percent-encoding", @@ -2945,7 +2947,7 @@ dependencies = [ "http 1.3.1", "http-body 1.0.1", "http-body-util", - "hyper 1.6.0", + "hyper 1.8.1", "hyper-rustls", "hyper-tls", "hyper-util", @@ -5096,7 +5098,7 @@ dependencies = [ "h2 0.4.12", "hickory-resolver 0.24.4", "http 1.3.1", - "hyper 1.6.0", + "hyper 1.8.1", "hyper-util", "indoc", "itertools 0.14.0", diff --git a/Cargo.toml b/Cargo.toml index 8956c364e..a4dbdd5ec 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -41,7 +41,7 @@ h2 = "0.4" hickory-resolver = "0.24" # 0.25 breaks the ability to detect DNS Errors, so we shouldn't update until that's fixed http = "1.3" hyper = "1.1" # Use the same version as `reqwest`: https://github.com/seanmonstar/reqwest/blob/v0.12.15/Cargo.toml#L121 -hyper-util = "0.1.17" +hyper-util = "0.1.18" indoc = "2.0" itertools = "0.14.0" linkify = "0.10.0"