diff --git a/Cargo.lock b/Cargo.lock index 5d3de8203f7..26df5601a23 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -180,7 +180,7 @@ dependencies = [ "bitflags 1.3.2", "bytes", "futures-util", - "http", + "http 0.2.11", "http-body", "hyper", "itoa", @@ -206,7 +206,7 @@ dependencies = [ "async-trait", "bytes", "futures-util", - "http", + "http 0.2.11", "http-body", "mime", "rustversion", @@ -1108,7 +1108,7 @@ dependencies = [ "futures-core", "futures-sink", "futures-util", - "http", + "http 0.2.11", "indexmap 2.1.0", "slab", "tokio", @@ -1173,6 +1173,17 @@ dependencies = [ "itoa", ] +[[package]] +name = "http" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b32afd38673a8016f7c9ae69e5af41a58f81b1d31689040f2f1959594ce194ea" +dependencies = [ + "bytes", + "fnv", + "itoa", +] + [[package]] name = "http-body" version = "0.4.6" @@ -1180,7 +1191,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" dependencies = [ "bytes", - "http", + "http 0.2.11", "pin-project-lite", ] @@ -1223,7 +1234,7 @@ dependencies = [ "futures-core", "futures-util", "h2", - "http", + "http 0.2.11", "http-body", "httparse", "httpdate", @@ -1243,7 +1254,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590" dependencies = [ "futures-util", - "http", + "http 0.2.11", "hyper", "rustls", "tokio", @@ -1692,7 +1703,7 @@ dependencies = [ "futures", "guppy", "home", - "http", + "http 1.0.0", "humantime-serde", "indent_write", "indexmap 2.1.0", @@ -2283,7 +2294,7 @@ dependencies = [ "futures-core", "futures-util", "h2", - "http", + "http 0.2.11", "http-body", "hyper", "hyper-rustls", @@ -3161,7 +3172,7 @@ dependencies = [ "base64 0.21.5", "bytes", "h2", - "http", + "http 0.2.11", "http-body", "hyper", "hyper-timeout", diff --git a/nextest-runner/Cargo.toml b/nextest-runner/Cargo.toml index 1edd843df48..55b957b7159 100644 --- a/nextest-runner/Cargo.toml +++ b/nextest-runner/Cargo.toml @@ -33,7 +33,7 @@ guppy = "0.17.4" # Used to find the cargo root directory, which is needed in case the user has # added a config.toml there home = "0.5.9" -http = "0.2.11" +http = "1.0.0" humantime-serde = "1.1.1" indent_write = "2.2.0" indicatif = "0.17.7"