diff --git a/Cargo.lock b/Cargo.lock index fd4ef99..0167b4a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -228,7 +228,7 @@ dependencies = [ "futures-core", "futures-sink", "futures-util", - "http", + "http 0.2.11", "indexmap", "slab", "tokio", @@ -262,6 +262,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.5" @@ -269,7 +280,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" dependencies = [ "bytes", - "http", + "http 0.2.11", "pin-project-lite", ] @@ -296,7 +307,7 @@ dependencies = [ "futures-core", "futures-util", "h2", - "http", + "http 0.2.11", "http-body", "httparse", "httpdate", @@ -315,7 +326,7 @@ version = "0.24.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0646026eb1b3eea4cd9ba47912ea5ce9cc07713d105b1a14698f4e6433d348b7" dependencies = [ - "http", + "http 0.2.11", "hyper", "rustls", "tokio", @@ -590,7 +601,7 @@ dependencies = [ "futures-core", "futures-util", "h2", - "http", + "http 0.2.11", "http-body", "hyper", "hyper-rustls", @@ -639,7 +650,7 @@ version = "0.1.0" dependencies = [ "async-trait", "csv", - "http", + "http 1.0.0", "rand", "regex", "reqwest", diff --git a/Cargo.toml b/Cargo.toml index 5e391c9..b3770c9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,5 +24,5 @@ async-trait = "0.1.74" serde_json = "1.0.108" [dev-dependencies] -http = "0.2.11" +http = "1.0.0" rand = "0.8.5"