From a1ca4dad9ccb3f0e84066b2aaabed96af5b90bc1 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Tue, 14 Jun 2022 00:39:01 +0000 Subject: [PATCH] fix(deps): update rust crate reqwest to 0.11.11 --- Cargo.lock | 9 +++++---- Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c74a0d1..5e99808 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1423,9 +1423,9 @@ dependencies = [ [[package]] name = "reqwest" -version = "0.11.10" +version = "0.11.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "46a1f7aa4f35e5e8b4160449f51afc758f0ce6454315a9fa7d0d113e958c41eb" +checksum = "b75aa69a3f06bbcc66ede33af2af253c6f7a86b1ca0033f60c580a27074fbf92" dependencies = [ "base64", "bytes", @@ -1451,6 +1451,7 @@ dependencies = [ "serde_urlencoded", "tokio", "tokio-rustls", + "tower-service", "url", "wasm-bindgen", "wasm-bindgen-futures", @@ -1500,9 +1501,9 @@ dependencies = [ [[package]] name = "rustls-pemfile" -version = "0.3.0" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1ee86d63972a7c661d1536fefe8c3c8407321c3df668891286de28abcd087360" +checksum = "e7522c9de787ff061458fe9a829dc790a3f5b22dc571694fc5883f448b94d9a9" dependencies = [ "base64", ] diff --git a/Cargo.toml b/Cargo.toml index 4adbc0f..b61ba79 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -38,7 +38,7 @@ thiserror = "1.0.31" clap = { version = "3.2.1", features = ["derive"] } log = { version = "0.4.17", features = ["release_max_level_info", "max_level_debug"] } simple_logger = { version = "2.1.0", default-features = false, features = ["colors"] } -reqwest = { version = "0.11.10", default-features = false, features = ["json", "rustls-tls"] } +reqwest = { version = "0.11.11", default-features = false, features = ["json", "rustls-tls"] } tokio = { version = "1.19.2", features = ["macros", "rt-multi-thread"] } [target.'cfg(not(all(unix, not(any(target_os="macos", target_os="android", target_os="emscripten")))))'.dependencies]