diff --git a/Cargo.lock b/Cargo.lock index 993075b0c..eb3ecefb0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -146,7 +146,7 @@ dependencies = [ "bitflags", "bytes", "futures-util", - "http", + "http 0.2.12", "http-body", "hyper", "itoa", @@ -172,7 +172,7 @@ dependencies = [ "async-trait", "bytes", "futures-util", - "http", + "http 0.2.12", "http-body", "mime", "rustversion", @@ -984,7 +984,7 @@ dependencies = [ "futures-core", "futures-sink", "futures-util", - "http", + "http 0.2.12", "indexmap 2.1.0", "slab", "tokio", @@ -1079,9 +1079,20 @@ dependencies = [ [[package]] name = "http" -version = "0.2.11" +version = "0.2.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1" +dependencies = [ + "bytes", + "fnv", + "itoa", +] + +[[package]] +name = "http" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8947b1a6fad4393052c7ba1f4cd97bed3e953a95c79c92ad9b051a04611d9fbb" +checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258" dependencies = [ "bytes", "fnv", @@ -1095,7 +1106,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" dependencies = [ "bytes", - "http", + "http 0.2.12", "pin-project-lite", ] @@ -1128,7 +1139,7 @@ dependencies = [ "futures-core", "futures-util", "h2", - "http", + "http 0.2.12", "http-body", "httparse", "httpdate", @@ -1869,7 +1880,7 @@ dependencies = [ "bytes", "crc32fast", "futures", - "http", + "http 0.2.12", "hyper", "hyper-tls", "lazy_static", @@ -1928,7 +1939,7 @@ dependencies = [ "futures", "hex", "hmac 0.11.0", - "http", + "http 0.2.12", "hyper", "log", "md-5", @@ -2390,7 +2401,7 @@ dependencies = [ "base64 0.21.7", "chrono", "futures", - "http", + "http 1.1.0", "hyper", "hyper-rustls", "lazy_static", @@ -2641,7 +2652,7 @@ dependencies = [ "futures-core", "futures-util", "h2", - "http", + "http 0.2.12", "http-body", "hyper", "hyper-timeout", @@ -3123,7 +3134,7 @@ dependencies = [ "base64 0.13.1", "chrono", "futures", - "http", + "http 0.2.12", "hyper", "hyper-rustls", "log", diff --git a/integration/gcpkms/Cargo.toml b/integration/gcpkms/Cargo.toml index 578357ecf..395af00a9 100644 --- a/integration/gcpkms/Cargo.toml +++ b/integration/gcpkms/Cargo.toml @@ -15,7 +15,7 @@ categories = ["cryptography"] base64 = "^0.21" chrono = "^0.4" futures = "^0.3" -http = "^0.2" +http = "^1.1" hyper = { version = "^0.14.20", features = ["client", "http1", "http2"] } hyper-rustls = "^0.22.1" lazy_static = "^1.4"