diff --git a/Cargo.lock b/Cargo.lock index 6539353..ab593b4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -139,7 +139,7 @@ dependencies = [ "serde_urlencoded", "thiserror", "tokio", - "tokio-util", + "tokio-util 0.6.9", "url", "winapi", ] @@ -640,9 +640,9 @@ checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574" [[package]] name = "h2" -version = "0.3.7" +version = "0.3.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7fd819562fcebdac5afc5c113c3ec36f902840b70fd4fc458799c8ce4607ae55" +checksum = "5ca32592cf21ac7ccab1825cd87f6c9b3d9022c44d086172ed0966bec8af30be" dependencies = [ "bytes", "fnv", @@ -653,7 +653,7 @@ dependencies = [ "indexmap", "slab", "tokio", - "tokio-util", + "tokio-util 0.7.2", "tracing", ] @@ -708,7 +708,7 @@ dependencies = [ "thiserror", "tokio", "tokio-stream", - "tokio-util", + "tokio-util 0.6.9", ] [[package]] @@ -1044,7 +1044,7 @@ dependencies = [ "mime", "spin 0.9.2", "tokio", - "tokio-util", + "tokio-util 0.6.9", "twoway", "version_check", ] @@ -1505,15 +1505,16 @@ dependencies = [ [[package]] name = "reqwest" -version = "0.11.6" +version = "0.11.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "66d2927ca2f685faf0fc620ac4834690d29e7abb153add10f5812eef20b5e280" +checksum = "87f242f1488a539a79bac6dbe7c8609ae43b7914b7736210f239a37cccb32525" dependencies = [ "base64 0.13.0", "bytes", "encoding_rs", "futures-core", "futures-util", + "h2", "http", "http-body", "hyper", @@ -1586,7 +1587,7 @@ dependencies = [ "time 0.2.27", "tokio", "tokio-stream", - "tokio-util", + "tokio-util 0.6.9", "ubyte", "version_check", "yansi", @@ -2166,6 +2167,20 @@ dependencies = [ "tokio", ] +[[package]] +name = "tokio-util" +version = "0.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f988a1a1adc2fb21f9c12aa96441da33a1728193ae0b95d2be22dbd17fcb4e5c" +dependencies = [ + "bytes", + "futures-core", + "futures-sink", + "pin-project-lite", + "tokio", + "tracing", +] + [[package]] name = "toml" version = "0.5.8" diff --git a/Cargo.toml b/Cargo.toml index 762534b..ca24858 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ hex = "0.4.3" lazy_static = "1.4.0" rand = "0.8.4" regex = "1.5.4" -reqwest = {version = "0.11.6", features = ["json"]} +reqwest = {version = "0.11.9", features = ["json"]} time = "0.2.25" tokio = {version = "1.15.0", features = ["full"]}