diff --git a/Cargo.lock b/Cargo.lock index d7dfdb0..982e6cf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -326,7 +326,7 @@ dependencies = [ "futures-core", "futures-sink", "futures-util", - "http", + "http 0.2.12", "indexmap", "slab", "tokio", @@ -357,6 +357,16 @@ dependencies = [ "itoa", ] +[[package]] +name = "http" +version = "1.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a" +dependencies = [ + "bytes", + "itoa", +] + [[package]] name = "http-body" version = "0.4.6" @@ -364,7 +374,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" dependencies = [ "bytes", - "http", + "http 0.2.12", "pin-project-lite", ] @@ -391,7 +401,7 @@ dependencies = [ "futures-core", "futures-util", "h2", - "http", + "http 0.2.12", "http-body", "httparse", "httpdate", @@ -411,7 +421,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "399c78f9338483cb7e630c8474b07268983c6bd5acee012e4211f9f7bb21b070" dependencies = [ "futures-util", - "http", + "http 0.2.12", "hyper", "log", "rustls", @@ -1418,7 +1428,7 @@ dependencies = [ "blake3", "bytes", "dotenvy", - "http", + "http 1.4.0", "httpdate", "hyper", "hyper-rustls", diff --git a/Cargo.toml b/Cargo.toml index 4189c59..5d424ee 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ anyhow = "1" bytes = "1" hyper = { version = "0.14", features = ["full"] } hyper-rustls = { version = "0.25", features = ["http1", "http2", "webpki-tokio"] } -http = "0.2" +http = "1.4" serde = { version = "1", features = ["derive"] } serde_json = "1" blake3 = "1"