From 8422a12ac638be460462cdb14cc8806dd176cc6e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 8 Oct 2021 13:25:31 -0600 Subject: [PATCH] chore: bump reqwest from 0.11.4 to 0.11.5 (#20536) * chore: bump reqwest from 0.11.4 to 0.11.5 Bumps [reqwest](https://github.com/seanmonstar/reqwest) from 0.11.4 to 0.11.5. - [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.4...v0.11.5) --- 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 | 10 ++++------ 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 | 6 ++---- 9 files changed, 13 insertions(+), 17 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3297c6e3e..6c85dbf76 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2574,9 +2574,9 @@ checksum = "e5ce46fe64a9d73be07dcbe690a38ce1b293be448fd8ce1e6c1b8062c9f72c6a" [[package]] name = "native-tls" -version = "0.2.7" +version = "0.2.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b8d96b2e1c8da3957d58100b09f102c6d9cfdfced01b7ec5a8974044bb09dbd4" +checksum = "48ba9f7719b5a0f42f338907614285fb5fd70e53858141f69898a1fb7203b24d" dependencies = [ "lazy_static", "libc", @@ -3650,9 +3650,9 @@ dependencies = [ [[package]] name = "reqwest" -version = "0.11.4" +version = "0.11.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "246e9f61b9bb77df069a947682be06e31ac43ea37862e244a69f177694ea6d22" +checksum = "51c732d463dd300362ffb44b7b125f299c23d2990411a4253824630ebc7467fb" dependencies = [ "base64 0.13.0", "bytes 1.0.1", @@ -6988,8 +6988,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "55c0f7123de74f0dab9b7d00fd614e7b19349cd1e2f5252bbe9b1754b59433be" dependencies = [ "cfg-if 1.0.0", - "serde", - "serde_json", "wasm-bindgen-macro", ] diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 629d06fc2..2325adc00 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -21,7 +21,7 @@ log = "0.4.14" humantime = "2.0.1" num-traits = "0.2" pretty-hex = "0.2.1" -reqwest = { version = "0.11.4", default-features = false, features = ["blocking", "rustls-tls", "json"] } +reqwest = { version = "0.11.5", default-features = false, features = ["blocking", "rustls-tls", "json"] } serde = "1.0.130" serde_derive = "1.0.103" serde_json = "1.0.68" diff --git a/client/Cargo.toml b/client/Cargo.toml index 5e1933440..afca9df0d 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -18,7 +18,7 @@ indicatif = "0.16.2" jsonrpc-core = "18.0.0" log = "0.4.14" rayon = "1.5.1" -reqwest = { version = "0.11.4", default-features = false, features = ["blocking", "rustls-tls", "json"] } +reqwest = { version = "0.11.5", default-features = false, features = ["blocking", "rustls-tls", "json"] } semver = "1.0.4" serde = "1.0.130" serde_derive = "1.0.103" diff --git a/core/Cargo.toml b/core/Cargo.toml index 5cee982cf..e37c5e728 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -69,7 +69,7 @@ jsonrpc-core-client = { version = "18.0.0", features = ["ipc", "ws"] } jsonrpc-derive = "18.0.0" jsonrpc-pubsub = "18.0.0" matches = "0.1.9" -reqwest = { version = "0.11.4", default-features = false, features = ["blocking", "rustls-tls", "json"] } +reqwest = { version = "0.11.5", default-features = false, features = ["blocking", "rustls-tls", "json"] } serde_json = "1.0.68" serial_test = "0.5.1" solana-program-runtime = { path = "../program-runtime", version = "=1.9.0" } diff --git a/download-utils/Cargo.toml b/download-utils/Cargo.toml index 359f696f7..0d48c73f3 100644 --- a/download-utils/Cargo.toml +++ b/download-utils/Cargo.toml @@ -13,7 +13,7 @@ edition = "2018" console = "0.14.1" indicatif = "0.16.2" log = "0.4.14" -reqwest = { version = "0.11.4", default-features = false, features = ["blocking", "rustls-tls", "json"] } +reqwest = { version = "0.11.5", default-features = false, features = ["blocking", "rustls-tls", "json"] } solana-sdk = { path = "../sdk", version = "=1.9.0" } solana-runtime = { path = "../runtime", version = "=1.9.0" } diff --git a/install/Cargo.toml b/install/Cargo.toml index 89d6d1c78..af28ac46c 100644 --- a/install/Cargo.toml +++ b/install/Cargo.toml @@ -21,7 +21,7 @@ dirs-next = "2.0.0" indicatif = "0.16.2" lazy_static = "1.4.0" nix = "0.20.0" -reqwest = { version = "0.11.4", default-features = false, features = ["blocking", "rustls-tls", "json"] } +reqwest = { version = "0.11.5", default-features = false, features = ["blocking", "rustls-tls", "json"] } serde = { version = "1.0.130", features = ["derive"] } serde_yaml = "0.8.21" solana-clap-utils = { path = "../clap-utils", version = "=1.9.0" } diff --git a/metrics/Cargo.toml b/metrics/Cargo.toml index 505b7c335..88ee77764 100644 --- a/metrics/Cargo.toml +++ b/metrics/Cargo.toml @@ -14,7 +14,7 @@ env_logger = "0.9.0" gethostname = "0.2.1" lazy_static = "1.4.0" log = "0.4.14" -reqwest = { version = "0.11.4", default-features = false, features = ["blocking", "rustls-tls", "json"] } +reqwest = { version = "0.11.5", default-features = false, features = ["blocking", "rustls-tls", "json"] } solana-sdk = { path = "../sdk", version = "=1.9.0" } [dev-dependencies] diff --git a/notifier/Cargo.toml b/notifier/Cargo.toml index 6ba3ed81b..c3cac5312 100644 --- a/notifier/Cargo.toml +++ b/notifier/Cargo.toml @@ -11,7 +11,7 @@ edition = "2018" [dependencies] log = "0.4.14" -reqwest = { version = "0.11.4", default-features = false, features = ["blocking", "rustls-tls", "json"] } +reqwest = { version = "0.11.5", 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 6f41a2a93..7fdd52057 100644 --- a/programs/bpf/Cargo.lock +++ b/programs/bpf/Cargo.lock @@ -2077,9 +2077,9 @@ dependencies = [ [[package]] name = "reqwest" -version = "0.11.4" +version = "0.11.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "246e9f61b9bb77df069a947682be06e31ac43ea37862e244a69f177694ea6d22" +checksum = "51c732d463dd300362ffb44b7b125f299c23d2990411a4253824630ebc7467fb" dependencies = [ "base64 0.13.0", "bytes 1.0.1", @@ -4038,8 +4038,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8fe8f61dba8e5d645a4d8132dc7a0a66861ed5e1045d2c0ed940fab33bac0fbe" dependencies = [ "cfg-if 1.0.0", - "serde", - "serde_json", "wasm-bindgen-macro", ]