From df65e5a4486b6c0af698319340f46db147b97fcf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 14 Mar 2022 19:30:50 +0000 Subject: [PATCH] Bump reqwest from 0.11.9 to 0.11.10 Bumps [reqwest](https://github.com/seanmonstar/reqwest) from 0.11.9 to 0.11.10. - [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.9...v0.11.10) --- updated-dependencies: - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 23 ++++++++++++++++------- crates/cli/Cargo.toml | 2 +- crates/iana-codegen/Cargo.toml | 2 +- 3 files changed, 18 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3a40e2247..1ad677450 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1770,7 +1770,7 @@ dependencies = [ "quoted_printable", "regex", "rustls 0.20.4", - "rustls-pemfile", + "rustls-pemfile 0.2.1", "serde", "tokio", "tokio-rustls 0.23.2", @@ -3047,9 +3047,9 @@ dependencies = [ [[package]] name = "reqwest" -version = "0.11.9" +version = "0.11.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "87f242f1488a539a79bac6dbe7c8609ae43b7914b7736210f239a37cccb32525" +checksum = "46a1f7aa4f35e5e8b4160449f51afc758f0ce6454315a9fa7d0d113e958c41eb" dependencies = [ "base64", "bytes 1.1.0", @@ -3070,7 +3070,7 @@ dependencies = [ "pin-project-lite", "rustls 0.20.4", "rustls-native-certs 0.6.1", - "rustls-pemfile", + "rustls-pemfile 0.3.0", "serde", "serde_json", "serde_urlencoded", @@ -3221,7 +3221,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5ca9ebdfa27d3fc180e42879037b5338ab1c040c06affd00d8338598e7800943" dependencies = [ "openssl-probe", - "rustls-pemfile", + "rustls-pemfile 0.2.1", "schannel", "security-framework", ] @@ -3235,6 +3235,15 @@ dependencies = [ "base64", ] +[[package]] +name = "rustls-pemfile" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ee86d63972a7c661d1536fefe8c3c8407321c3df668891286de28abcd087360" +dependencies = [ + "base64", +] + [[package]] name = "rustversion" version = "1.0.6" @@ -4753,9 +4762,9 @@ checksum = "504a2476202769977a040c6364301a3f65d0cc9e3fb08600b2bda150a0488316" [[package]] name = "winreg" -version = "0.7.0" +version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0120db82e8a1e0b9fb3345a539c478767c0048d842860994d96113d5b667bd69" +checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d" dependencies = [ "winapi", ] diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index 888aaf09a..920abb105 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -19,7 +19,7 @@ serde_json = "1.0.79" warp = "0.3.2" url = "2.2.2" argon2 = { version = "0.3.4", features = ["password-hash"] } -reqwest = { version = "0.11.9", features = ["rustls-tls"], default-features = false, optional = true } +reqwest = { version = "0.11.10", features = ["rustls-tls"], default-features = false, optional = true } watchman_client = "0.7.1" atty = "0.2.14" rand = "0.8.5" diff --git a/crates/iana-codegen/Cargo.toml b/crates/iana-codegen/Cargo.toml index 262ba9494..e255f4b9c 100644 --- a/crates/iana-codegen/Cargo.toml +++ b/crates/iana-codegen/Cargo.toml @@ -11,7 +11,7 @@ async-trait = "0.1.52" convert_case = "0.5.0" csv = "1.1.6" futures-util = "0.3.21" -reqwest = { version = "0.11.9", features = ["blocking", "rustls-tls"], default-features = false } +reqwest = { version = "0.11.10", features = ["blocking", "rustls-tls"], default-features = false } serde = { version = "1.0.136", features = ["derive"] } tokio = { version = "1.17.0", features = ["full"] } tracing = "0.1.32"