Bump reqwest from 0.11.17 to 0.11.18 (#1062)

Bumps [reqwest](https://github.com/seanmonstar/reqwest) from 0.11.17 to 0.11.18.
- [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.17...v0.11.18)

---
updated-dependencies:
- dependency-name: reqwest
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
dependabot[bot] 2023-05-17 12:39:10 +10:00 committed by GitHub
parent 249e4c4634
commit 71d864b4cc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 50 additions and 19 deletions

67
Cargo.lock generated
View file

@ -107,14 +107,12 @@ version = "0.3.15"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "942c7cd7ae39e91bde4820d74132e9862e62c2f386c3aa90ccf55949f5bad63a" checksum = "942c7cd7ae39e91bde4820d74132e9862e62c2f386c3aa90ccf55949f5bad63a"
dependencies = [ dependencies = [
"brotli",
"bzip2", "bzip2",
"flate2", "flate2",
"futures-core", "futures-core",
"futures-io", "futures-io",
"memchr", "memchr",
"pin-project-lite", "pin-project-lite",
"tokio",
"xz2", "xz2",
"zstd 0.11.2+zstd.1.5.2", "zstd 0.11.2+zstd.1.5.2",
"zstd-safe 5.0.2+zstd.1.5.2", "zstd-safe 5.0.2+zstd.1.5.2",
@ -126,6 +124,7 @@ version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5b0122885821398cc923ece939e24d1056a2384ee719432397fa9db87230ff11" checksum = "5b0122885821398cc923ece939e24d1056a2384ee719432397fa9db87230ff11"
dependencies = [ dependencies = [
"brotli",
"bzip2", "bzip2",
"flate2", "flate2",
"futures-core", "futures-core",
@ -1054,15 +1053,15 @@ dependencies = [
[[package]] [[package]]
name = "hyper-rustls" name = "hyper-rustls"
version = "0.23.2" version = "0.24.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1788965e61b367cd03a62950836d5cd41560c3577d90e40e0819373194d1661c" checksum = "0646026eb1b3eea4cd9ba47912ea5ce9cc07713d105b1a14698f4e6433d348b7"
dependencies = [ dependencies = [
"http", "http",
"hyper", "hyper",
"rustls", "rustls 0.21.1",
"tokio", "tokio",
"tokio-rustls", "tokio-rustls 0.24.0",
] ]
[[package]] [[package]]
@ -1649,7 +1648,7 @@ dependencies = [
"fxhash", "fxhash",
"quinn-proto", "quinn-proto",
"quinn-udp", "quinn-udp",
"rustls", "rustls 0.20.8",
"thiserror", "thiserror",
"tokio", "tokio",
"tracing", "tracing",
@ -1666,7 +1665,7 @@ dependencies = [
"fxhash", "fxhash",
"rand", "rand",
"ring", "ring",
"rustls", "rustls 0.20.8",
"rustls-native-certs", "rustls-native-certs",
"rustls-pemfile 0.2.1", "rustls-pemfile 0.2.1",
"slab", "slab",
@ -1777,11 +1776,11 @@ checksum = "a5996294f19bd3aae0453a862ad728f60e6600695733dd5df01da90c54363a3c"
[[package]] [[package]]
name = "reqwest" name = "reqwest"
version = "0.11.17" version = "0.11.18"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "13293b639a097af28fc8a90f22add145a9c954e49d77da06263d58cf44d5fb91" checksum = "cde824a14b7c14f85caff81225f411faacc04a2013f41670f41443742b1c1c55"
dependencies = [ dependencies = [
"async-compression 0.3.15", "async-compression 0.4.0",
"base64 0.21.0", "base64 0.21.0",
"bytes", "bytes",
"encoding_rs", "encoding_rs",
@ -1801,14 +1800,14 @@ dependencies = [
"once_cell", "once_cell",
"percent-encoding", "percent-encoding",
"pin-project-lite", "pin-project-lite",
"rustls", "rustls 0.21.1",
"rustls-pemfile 1.0.2", "rustls-pemfile 1.0.2",
"serde", "serde",
"serde_json", "serde_json",
"serde_urlencoded", "serde_urlencoded",
"tokio", "tokio",
"tokio-native-tls", "tokio-native-tls",
"tokio-rustls", "tokio-rustls 0.24.0",
"tokio-util", "tokio-util",
"tower-service", "tower-service",
"trust-dns-resolver", "trust-dns-resolver",
@ -1887,6 +1886,18 @@ dependencies = [
"webpki", "webpki",
] ]
[[package]]
name = "rustls"
version = "0.21.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c911ba11bc8433e811ce56fde130ccf32f5127cab0e0194e9c68c5a5b671791e"
dependencies = [
"log",
"ring",
"rustls-webpki",
"sct",
]
[[package]] [[package]]
name = "rustls-native-certs" name = "rustls-native-certs"
version = "0.6.2" version = "0.6.2"
@ -1917,6 +1928,16 @@ dependencies = [
"base64 0.21.0", "base64 0.21.0",
] ]
[[package]]
name = "rustls-webpki"
version = "0.100.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d6207cd5ed3d8dca7816f8f3725513a34609c0c765bf652b8c3cb4cfd87db46b"
dependencies = [
"ring",
"untrusted",
]
[[package]] [[package]]
name = "rustversion" name = "rustversion"
version = "1.0.12" version = "1.0.12"
@ -2321,11 +2342,21 @@ version = "0.23.4"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59" checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59"
dependencies = [ dependencies = [
"rustls", "rustls 0.20.8",
"tokio", "tokio",
"webpki", "webpki",
] ]
[[package]]
name = "tokio-rustls"
version = "0.24.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e0d409377ff5b1e3ca6437aa86c1eb7d40c134bfec254e44c830defa92669db5"
dependencies = [
"rustls 0.21.1",
"tokio",
]
[[package]] [[package]]
name = "tokio-stream" name = "tokio-stream"
version = "0.1.14" version = "0.1.14"
@ -2522,14 +2553,14 @@ dependencies = [
"quinn", "quinn",
"rand", "rand",
"ring", "ring",
"rustls", "rustls 0.20.8",
"rustls-pemfile 1.0.2", "rustls-pemfile 1.0.2",
"smallvec", "smallvec",
"thiserror", "thiserror",
"tinyvec", "tinyvec",
"tokio", "tokio",
"tokio-native-tls", "tokio-native-tls",
"tokio-rustls", "tokio-rustls 0.23.4",
"tracing", "tracing",
"url", "url",
"webpki", "webpki",
@ -2549,12 +2580,12 @@ dependencies = [
"lru-cache", "lru-cache",
"parking_lot", "parking_lot",
"resolv-conf", "resolv-conf",
"rustls", "rustls 0.20.8",
"smallvec", "smallvec",
"thiserror", "thiserror",
"tokio", "tokio",
"tokio-native-tls", "tokio-native-tls",
"tokio-rustls", "tokio-rustls 0.23.4",
"tracing", "tracing",
"trust-dns-proto", "trust-dns-proto",
"webpki-roots", "webpki-roots",

View file

@ -23,7 +23,7 @@ futures-lite = { version = "1.13.0", default-features = false }
futures-util = "0.3.28" futures-util = "0.3.28"
generic-array = "0.14.7" generic-array = "0.14.7"
httpdate = "1.0.2" httpdate = "1.0.2"
reqwest = { version = "0.11.17", features = ["stream", "gzip", "brotli", "deflate"], default-features = false } reqwest = { version = "0.11.18", features = ["stream", "gzip", "brotli", "deflate"], default-features = false }
serde = { version = "1.0.163", features = ["derive"], optional = true } serde = { version = "1.0.163", features = ["derive"], optional = true }
serde_json = { version = "1.0.96", optional = true } serde_json = { version = "1.0.96", optional = true }
# Use a fork here since we need PAX support, but the upstream # Use a fork here since we need PAX support, but the upstream