From aa87c29ebfd8d097f98b1383a4737f5f15a81da9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 23 Jun 2022 18:29:20 +0000 Subject: [PATCH] Bump reqwest from 0.11.10 to 0.11.11 Bumps [reqwest](https://github.com/seanmonstar/reqwest) from 0.11.10 to 0.11.11. - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.10...v0.11.11) --- updated-dependencies: - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 20 ++++++-------------- crates/cli/Cargo.toml | 2 +- crates/iana-codegen/Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 16 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f30684a4..f30afec5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2202,7 +2202,7 @@ dependencies = [ "once_cell", "quoted_printable", "rustls 0.20.6", - "rustls-pemfile 1.0.0", + "rustls-pemfile", "serde", "socket2", "tokio", @@ -3608,9 +3608,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 1.1.0", @@ -3631,12 +3631,13 @@ dependencies = [ "pin-project-lite", "rustls 0.20.6", "rustls-native-certs 0.6.2", - "rustls-pemfile 0.3.0", + "rustls-pemfile", "serde", "serde_json", "serde_urlencoded", "tokio", "tokio-rustls 0.23.4", + "tower-service", "url", "wasm-bindgen", "wasm-bindgen-futures", @@ -3797,20 +3798,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0167bac7a9f490495f3c33013e7722b53cb087ecbe082fb0c6387c96f634ea50" dependencies = [ "openssl-probe", - "rustls-pemfile 1.0.0", + "rustls-pemfile", "schannel", "security-framework", ] -[[package]] -name = "rustls-pemfile" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1ee86d63972a7c661d1536fefe8c3c8407321c3df668891286de28abcd087360" -dependencies = [ - "base64", -] - [[package]] name = "rustls-pemfile" version = "1.0.0" diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index 0541a705..86e0bbad 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -18,7 +18,7 @@ serde_yaml = "0.8.24" serde_json = "1.0.81" url = "2.2.2" argon2 = { version = "0.4.0", features = ["password-hash"] } -reqwest = { version = "0.11.10", features = ["rustls-tls"], default-features = false, optional = true } +reqwest = { version = "0.11.11", features = ["rustls-tls"], default-features = false, optional = true } watchman_client = "0.8.0" atty = "0.2.14" diff --git a/crates/iana-codegen/Cargo.toml b/crates/iana-codegen/Cargo.toml index d5063b8f..21aaaa63 100644 --- a/crates/iana-codegen/Cargo.toml +++ b/crates/iana-codegen/Cargo.toml @@ -11,7 +11,7 @@ async-trait = "0.1.56" convert_case = "0.5.0" csv = "1.1.6" futures-util = "0.3.21" -reqwest = { version = "0.11.10", features = ["blocking", "rustls-tls"], default-features = false } +reqwest = { version = "0.11.11", features = ["blocking", "rustls-tls"], default-features = false } serde = { version = "1.0.137", features = ["derive"] } tokio = { version = "1.19.2", features = ["full"] } tracing = "0.1.35"