From 62b26f012ea1f83b00f9d50035d78204a3f0eedf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 15 Mar 2022 12:54:23 -0600 Subject: [PATCH] chore: bump reqwest from 0.11.9 to 0.11.10 (#23671) * chore: 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] * [auto-commit] Update all Cargo lock files Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: dependabot-buildkite --- Cargo.lock | 38 +++++++++++++++++++------------------- cli/Cargo.toml | 2 +- client/Cargo.toml | 2 +- core/Cargo.toml | 2 +- download-utils/Cargo.toml | 2 +- install/Cargo.toml | 2 +- metrics/Cargo.toml | 2 +- notifier/Cargo.toml | 2 +- programs/bpf/Cargo.lock | 29 +++++++++++++++++++---------- rpc-test/Cargo.toml | 2 +- 10 files changed, 46 insertions(+), 37 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d3be67372..d5b030e3c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3231,7 +3231,7 @@ dependencies = [ "ring", "rustls 0.20.4", "rustls-native-certs", - "rustls-pemfile", + "rustls-pemfile 0.2.1", "slab", "thiserror", "tinyvec", @@ -3539,9 +3539,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 0.13.0", "bytes", @@ -3563,7 +3563,7 @@ dependencies = [ "percent-encoding 2.1.0", "pin-project-lite", "rustls 0.20.4", - "rustls-pemfile", + "rustls-pemfile 0.3.0", "serde", "serde_json", "serde_urlencoded", @@ -3575,7 +3575,7 @@ dependencies = [ "wasm-bindgen-futures", "web-sys", "webpki-roots", - "winreg 0.7.0", + "winreg", ] [[package]] @@ -3706,7 +3706,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", ] @@ -3720,6 +3720,15 @@ dependencies = [ "base64 0.13.0", ] +[[package]] +name = "rustls-pemfile" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ee86d63972a7c661d1536fefe8c3c8407321c3df668891286de28abcd087360" +dependencies = [ + "base64 0.13.0", +] + [[package]] name = "rustversion" version = "1.0.6" @@ -3926,12 +3935,12 @@ dependencies = [ [[package]] name = "serde_urlencoded" -version = "0.7.0" +version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "edfa57a7f8d9c1d260a549e7224100f6c43d43f9103e06dd8b4095a9b2b43ce9" +checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" dependencies = [ "form_urlencoded", - "itoa 0.4.8", + "itoa 1.0.1", "ryu", "serde", ] @@ -4967,7 +4976,7 @@ dependencies = [ "tempfile", "url 2.2.2", "winapi 0.3.9", - "winreg 0.10.1", + "winreg", ] [[package]] @@ -7377,15 +7386,6 @@ version = "0.32.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "504a2476202769977a040c6364301a3f65d0cc9e3fb08600b2bda150a0488316" -[[package]] -name = "winreg" -version = "0.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0120db82e8a1e0b9fb3345a539c478767c0048d842860994d96113d5b667bd69" -dependencies = [ - "winapi 0.3.9", -] - [[package]] name = "winreg" version = "0.10.1" diff --git a/cli/Cargo.toml b/cli/Cargo.toml index b7dc20cc6..238638e8e 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -22,7 +22,7 @@ humantime = "2.0.1" log = "0.4.14" num-traits = "0.2" pretty-hex = "0.2.1" -reqwest = { version = "0.11.9", default-features = false, features = ["blocking", "rustls-tls", "json"] } +reqwest = { version = "0.11.10", default-features = false, features = ["blocking", "rustls-tls", "json"] } semver = "1.0.6" serde = "1.0.136" serde_derive = "1.0.103" diff --git a/client/Cargo.toml b/client/Cargo.toml index 19de2a55b..98b9aa597 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -26,7 +26,7 @@ jsonrpc-core = "18.0.0" log = "0.4.14" quinn = "0.8.0" rayon = "1.5.1" -reqwest = { version = "0.11.9", default-features = false, features = ["blocking", "rustls-tls", "json"] } +reqwest = { version = "0.11.10", default-features = false, features = ["blocking", "rustls-tls", "json"] } rustls = { version = "0.20.2", features = ["dangerous_configuration"] } semver = "1.0.6" serde = "1.0.136" diff --git a/core/Cargo.toml b/core/Cargo.toml index 2301d2162..3d77e2123 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -66,7 +66,7 @@ trees = "0.4.2" [dev-dependencies] matches = "0.1.9" raptorq = "1.6.5" -reqwest = { version = "0.11.9", default-features = false, features = ["blocking", "rustls-tls", "json"] } +reqwest = { version = "0.11.10", default-features = false, features = ["blocking", "rustls-tls", "json"] } serde_json = "1.0.79" serial_test = "0.6.0" solana-logger = { path = "../logger", version = "=1.10.3" } diff --git a/download-utils/Cargo.toml b/download-utils/Cargo.toml index a806ac1e0..b1222d748 100644 --- a/download-utils/Cargo.toml +++ b/download-utils/Cargo.toml @@ -13,7 +13,7 @@ edition = "2021" console = "0.15.0" indicatif = "0.16.2" log = "0.4.14" -reqwest = { version = "0.11.9", default-features = false, features = ["blocking", "rustls-tls", "json"] } +reqwest = { version = "0.11.10", default-features = false, features = ["blocking", "rustls-tls", "json"] } solana-runtime = { path = "../runtime", version = "=1.10.3" } solana-sdk = { path = "../sdk", version = "=1.10.3" } diff --git a/install/Cargo.toml b/install/Cargo.toml index 2ac347b21..20fbb3312 100644 --- a/install/Cargo.toml +++ b/install/Cargo.toml @@ -22,7 +22,7 @@ dirs-next = "2.0.0" indicatif = "0.16.2" lazy_static = "1.4.0" nix = "0.23.1" -reqwest = { version = "0.11.9", default-features = false, features = ["blocking", "rustls-tls", "json"] } +reqwest = { version = "0.11.10", default-features = false, features = ["blocking", "rustls-tls", "json"] } semver = "1.0.6" serde = { version = "1.0.136", features = ["derive"] } serde_yaml = "0.8.23" diff --git a/metrics/Cargo.toml b/metrics/Cargo.toml index 76889130d..c882b3dff 100644 --- a/metrics/Cargo.toml +++ b/metrics/Cargo.toml @@ -14,7 +14,7 @@ crossbeam-channel = "0.5" gethostname = "0.2.1" lazy_static = "1.4.0" log = "0.4.14" -reqwest = { version = "0.11.9", default-features = false, features = ["blocking", "rustls-tls", "json"] } +reqwest = { version = "0.11.10", default-features = false, features = ["blocking", "rustls-tls", "json"] } solana-sdk = { path = "../sdk", version = "=1.10.3" } [dev-dependencies] diff --git a/notifier/Cargo.toml b/notifier/Cargo.toml index 657ae4ec0..7338fb946 100644 --- a/notifier/Cargo.toml +++ b/notifier/Cargo.toml @@ -11,7 +11,7 @@ edition = "2021" [dependencies] log = "0.4.14" -reqwest = { version = "0.11.9", default-features = false, features = ["blocking", "rustls-tls", "json"] } +reqwest = { version = "0.11.10", default-features = false, features = ["blocking", "rustls-tls", "json"] } serde_json = "1.0" [lib] diff --git a/programs/bpf/Cargo.lock b/programs/bpf/Cargo.lock index c10c758f3..7cfca6639 100644 --- a/programs/bpf/Cargo.lock +++ b/programs/bpf/Cargo.lock @@ -2062,7 +2062,7 @@ dependencies = [ "ring", "rustls", "rustls-native-certs", - "rustls-pemfile", + "rustls-pemfile 0.2.1", "slab", "thiserror", "tinyvec", @@ -2272,9 +2272,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 0.13.0", "bytes 1.1.0", @@ -2294,7 +2294,7 @@ dependencies = [ "percent-encoding", "pin-project-lite", "rustls", - "rustls-pemfile", + "rustls-pemfile 0.3.0", "serde", "serde_json", "serde_urlencoded", @@ -2384,7 +2384,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", ] @@ -2398,6 +2398,15 @@ dependencies = [ "base64 0.13.0", ] +[[package]] +name = "rustls-pemfile" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ee86d63972a7c661d1536fefe8c3c8407321c3df668891286de28abcd087360" +dependencies = [ + "base64 0.13.0", +] + [[package]] name = "rustversion" version = "1.0.6" @@ -2551,12 +2560,12 @@ dependencies = [ [[package]] name = "serde_urlencoded" -version = "0.7.0" +version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "edfa57a7f8d9c1d260a549e7224100f6c43d43f9103e06dd8b4095a9b2b43ce9" +checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" dependencies = [ "form_urlencoded", - "itoa 0.4.5", + "itoa 1.0.1", "ryu", "serde", ] @@ -4622,9 +4631,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/rpc-test/Cargo.toml b/rpc-test/Cargo.toml index 1f564d0fc..8f909bafe 100644 --- a/rpc-test/Cargo.toml +++ b/rpc-test/Cargo.toml @@ -16,7 +16,7 @@ bs58 = "0.4.0" crossbeam-channel = "0.5" futures-util = "0.3.21" log = "0.4.11" -reqwest = { version = "0.11.9", default-features = false, features = ["blocking", "rustls-tls", "json"] } +reqwest = { version = "0.11.10", default-features = false, features = ["blocking", "rustls-tls", "json"] } serde = "1.0.136" serde_json = "1.0.79" solana-account-decoder = { path = "../account-decoder", version = "=1.10.3" }