diff --git a/Cargo.lock b/Cargo.lock index f9d5162d2..238182488 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -377,6 +377,12 @@ version = "0.20.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0ea22880d78093b0cbe17c89f64a7d457941e65759157ec6cb31a31d652b05e5" +[[package]] +name = "base64" +version = "0.21.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a" + [[package]] name = "base64ct" version = "1.5.1" @@ -2955,11 +2961,11 @@ dependencies = [ [[package]] name = "reqwest" -version = "0.11.13" +version = "0.11.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "68cc60575865c7831548863cc02356512e3f1dc2f3f82cb837d7fc4cc8f3c97c" +checksum = "21eed90ec8570952d53b772ecf8f206aa1ec9a3d76b2521c56c42973f2d91ee9" dependencies = [ - "base64 0.13.1", + "base64 0.21.0", "bytes", "encoding_rs", "futures-core", diff --git a/Cargo.toml b/Cargo.toml index 779178c2d..da4f7eb0b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -83,7 +83,7 @@ async-channel = "1.8.0" futures-lite = "1.12.0" tokio-stream = { version = "0.1.11", features = ["fs"] } tokio-io-timeout = "1.2.0" -reqwest = { version = "0.11.13", features = ["json"] } +reqwest = { version = "0.11.14", features = ["json"] } async_zip = { version = "0.0.9", default-features = false, features = ["deflate"] } [dev-dependencies]