From 341e20c74679136f36105c185897c06d4c0e844a Mon Sep 17 00:00:00 2001 From: Nextest Bot Date: Mon, 11 Dec 2023 04:14:25 +0000 Subject: [PATCH] Update Rust crate http to v1 --- Cargo.lock | 29 ++++++++++++++++++++--------- nextest-runner/Cargo.toml | 2 +- 2 files changed, 21 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ac3cd485395..c08a6d7180d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -191,7 +191,7 @@ dependencies = [ "bitflags 1.3.2", "bytes", "futures-util", - "http", + "http 0.2.11", "http-body", "hyper", "itoa", @@ -217,7 +217,7 @@ dependencies = [ "async-trait", "bytes", "futures-util", - "http", + "http 0.2.11", "http-body", "mime", "rustversion", @@ -1118,7 +1118,7 @@ dependencies = [ "futures-core", "futures-sink", "futures-util", - "http", + "http 0.2.11", "indexmap 2.1.0", "slab", "tokio", @@ -1192,6 +1192,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" @@ -1199,7 +1210,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" dependencies = [ "bytes", - "http", + "http 0.2.11", "pin-project-lite", ] @@ -1242,7 +1253,7 @@ dependencies = [ "futures-core", "futures-util", "h2", - "http", + "http 0.2.11", "http-body", "httparse", "httpdate", @@ -1262,7 +1273,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590" dependencies = [ "futures-util", - "http", + "http 0.2.11", "hyper", "rustls", "tokio", @@ -1711,7 +1722,7 @@ dependencies = [ "futures", "guppy", "home", - "http", + "http 1.0.0", "humantime-serde", "indent_write", "indexmap 2.1.0", @@ -2295,7 +2306,7 @@ dependencies = [ "futures-core", "futures-util", "h2", - "http", + "http 0.2.11", "http-body", "hyper", "hyper-rustls", @@ -3183,7 +3194,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 d3c349093cf..be2a3720ea2 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.5" -http = "0.2.11" +http = "1.0.0" humantime-serde = "1.1.1" indent_write = "2.2.0" indicatif = "0.17.7"