From 876c5cba5ca89f406ce2842585ec6e9d658b6133 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 18 Jun 2024 10:59:57 +0000 Subject: [PATCH] Bump reqwest from 0.12.4 to 0.12.5 Bumps [reqwest](https://github.com/seanmonstar/reqwest) from 0.12.4 to 0.12.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.12.4...v0.12.5) --- updated-dependencies: - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 65 ++++++++++++++++++++++++++++++++++++++++------- Cargo.toml | 2 +- errors/Cargo.toml | 2 +- 3 files changed, 58 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 52288c1120..a994a4c57a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1283,6 +1283,23 @@ dependencies = [ "want", ] +[[package]] +name = "hyper-rustls" +version = "0.27.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5ee4be2c948921a1a5320b629c4193916ed787a7f7f293fd3f7f5a6c9de74155" +dependencies = [ + "futures-util", + "http 1.1.0", + "hyper 1.3.1", + "hyper-util", + "rustls 0.23.10", + "rustls-pki-types", + "tokio", + "tokio-rustls", + "tower-service", +] + [[package]] name = "hyper-tls" version = "0.5.0" @@ -1526,7 +1543,7 @@ dependencies = [ "colored", "derivative", "leo-span", - "reqwest 0.12.4", + "reqwest 0.12.5", "serde", "thiserror", ] @@ -1559,7 +1576,7 @@ dependencies = [ "rand", "rand_chacha", "rand_core", - "reqwest 0.12.4", + "reqwest 0.12.5", "rpassword", "rusty-hook", "self_update 0.40.0", @@ -2317,7 +2334,7 @@ dependencies = [ "serde", "serde_json", "serde_urlencoded", - "sync_wrapper", + "sync_wrapper 0.1.2", "system-configuration", "tokio", "tokio-native-tls", @@ -2331,9 +2348,9 @@ dependencies = [ [[package]] name = "reqwest" -version = "0.12.4" +version = "0.12.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "566cafdd92868e0939d3fb961bd0dc25fcfaaed179291093b3d43e6b3150ea10" +checksum = "c7d6d2a27d57148378eb5e111173f4276ad26340ecc5c49a4a2152167a2d6a37" dependencies = [ "base64 0.22.1", "bytes", @@ -2346,6 +2363,7 @@ dependencies = [ "http-body 1.0.0", "http-body-util", "hyper 1.3.1", + "hyper-rustls", "hyper-tls 0.6.0", "hyper-util", "ipnet", @@ -2361,7 +2379,7 @@ dependencies = [ "serde", "serde_json", "serde_urlencoded", - "sync_wrapper", + "sync_wrapper 1.0.1", "system-configuration", "tokio", "tokio-native-tls", @@ -2451,6 +2469,19 @@ dependencies = [ "zeroize", ] +[[package]] +name = "rustls" +version = "0.23.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "05cff451f60db80f490f3c182b77c35260baace73209e9cdbbe526bfe3a4d402" +dependencies = [ + "once_cell", + "rustls-pki-types", + "rustls-webpki", + "subtle", + "zeroize", +] + [[package]] name = "rustls-pemfile" version = "1.0.4" @@ -2614,7 +2645,7 @@ dependencies = [ "log", "quick-xml", "regex", - "reqwest 0.12.4", + "reqwest 0.12.5", "self-replace", "semver", "serde_json", @@ -3719,6 +3750,12 @@ version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" +[[package]] +name = "sync_wrapper" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394" + [[package]] name = "synom" version = "0.11.3" @@ -3894,7 +3931,6 @@ dependencies = [ "bytes", "libc", "mio", - "num_cpus", "pin-project-lite", "socket2", "windows-sys 0.48.0", @@ -3910,6 +3946,17 @@ dependencies = [ "tokio", ] +[[package]] +name = "tokio-rustls" +version = "0.26.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c7bc40d0e5a97695bb96e27995cd3a08538541b0a846f65bba7a359f36700d4" +dependencies = [ + "rustls 0.23.10", + "rustls-pki-types", + "tokio", +] + [[package]] name = "tokio-util" version = "0.7.11" @@ -4120,7 +4167,7 @@ dependencies = [ "flate2", "log", "once_cell", - "rustls", + "rustls 0.22.4", "rustls-pki-types", "rustls-webpki", "serde", diff --git a/Cargo.toml b/Cargo.toml index aa204c3d87..689ec0f93e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -137,7 +137,7 @@ default-features = false version = "0.6.4" [dependencies.reqwest] -version = "0.12.4" +version = "0.12.5" features = [ "blocking", "json", "multipart" ] [dependencies.self_update] diff --git a/errors/Cargo.toml b/errors/Cargo.toml index ec0de114b3..16b6c1273f 100644 --- a/errors/Cargo.toml +++ b/errors/Cargo.toml @@ -38,7 +38,7 @@ version = "0.6.1" version = "2.2.0" [dependencies.reqwest] -version = "0.12.4" +version = "0.12.5" [dependencies.serde] version = "1.0.203"