diff --git a/Cargo.lock b/Cargo.lock index b1c19525b..427b7ade1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -175,7 +175,7 @@ dependencies = [ "bitflags 1.3.2", "bytes", "futures-util", - "http", + "http 0.2.12", "http-body", "hyper", "itoa", @@ -201,7 +201,7 @@ dependencies = [ "async-trait", "bytes", "futures-util", - "http", + "http 0.2.12", "http-body", "mime", "rustversion", @@ -825,7 +825,7 @@ dependencies = [ "futures-core", "futures-sink", "futures-util", - "http", + "http 0.2.12", "indexmap 2.1.0", "slab", "tokio", @@ -898,9 +898,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", @@ -914,7 +925,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" dependencies = [ "bytes", - "http", + "http 0.2.12", "pin-project-lite", ] @@ -924,7 +935,7 @@ version = "1.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6f560b665ad9f1572cfcaf034f7fb84338a7ce945216d64a90fd81f046a3caee" dependencies = [ - "http", + "http 0.2.12", "serde", ] @@ -951,7 +962,7 @@ dependencies = [ "futures-core", "futures-util", "h2", - "http", + "http 0.2.12", "http-body", "httparse", "httpdate", @@ -1088,7 +1099,7 @@ dependencies = [ "clap 3.2.25", "flate2", "futures", - "http", + "http 1.1.0", "http-serde", "hyper", "is_executable", @@ -2023,7 +2034,7 @@ dependencies = [ "futures-core", "futures-util", "h2", - "http", + "http 0.2.12", "http-body", "hyper", "ipnet", @@ -2579,7 +2590,7 @@ dependencies = [ "futures-core", "futures-util", "h2", - "http", + "http 0.2.12", "http-body", "hyper", "hyper-timeout", @@ -2610,7 +2621,7 @@ dependencies = [ "futures-core", "futures-util", "h2", - "http", + "http 0.2.12", "http-body", "hyper", "hyper-timeout", diff --git a/lading/Cargo.toml b/lading/Cargo.toml index 6b0bcc33e..e230d2b6c 100644 --- a/lading/Cargo.toml +++ b/lading/Cargo.toml @@ -23,7 +23,7 @@ bytes = { workspace = true, features = ["std"] } clap = { version = "3.2", default-features = false, features = ["std", "color", "suggestions", "derive"] } flate2 = { version = "1.0.27", default-features = false, features = ["rust_backend" ] } futures = "0.3.28" -http = "0.2" +http = "1.1" http-serde = "1.1" hyper = { version = "0.14", features = ["client"] } is_executable = "1.0.1"