diff --git a/Cargo.lock b/Cargo.lock index f94b66d1..69c5b44e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -843,7 +843,7 @@ dependencies = [ "futures-core", "futures-sink", "futures-util", - "http", + "http 0.2.12", "indexmap", "slab", "tokio", @@ -901,6 +901,17 @@ dependencies = [ "itoa", ] +[[package]] +name = "http" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258" +dependencies = [ + "bytes", + "fnv", + "itoa", +] + [[package]] name = "http-body" version = "0.4.6" @@ -908,7 +919,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" dependencies = [ "bytes", - "http", + "http 0.2.12", "pin-project-lite", ] @@ -941,7 +952,7 @@ dependencies = [ "futures-core", "futures-util", "h2", - "http", + "http 0.2.12", "http-body", "httparse", "httpdate", @@ -1634,7 +1645,7 @@ dependencies = [ "futures-core", "futures-util", "h2", - "http", + "http 0.2.12", "http-body", "hyper", "hyper-tls", @@ -2632,7 +2643,7 @@ dependencies = [ "fn-error-context", "futures", "glob", - "http", + "http 1.1.0", "intervaltree", "lazy_static", "libc", diff --git a/Cargo.toml b/Cargo.toml index fe277472..53d33b95 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -50,7 +50,7 @@ users = "0.11.0" zbus = "3" [dev-dependencies] -http = "0.2" +http = "1.1" mockito = "1.4" proptest = "1.4" tempfile = ">= 3.7, < 4.0"