diff --git a/Cargo.lock b/Cargo.lock index 2872fdc7..0759ef2c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -107,14 +107,12 @@ version = "0.3.15" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "942c7cd7ae39e91bde4820d74132e9862e62c2f386c3aa90ccf55949f5bad63a" dependencies = [ - "brotli", "bzip2", "flate2", "futures-core", "futures-io", "memchr", "pin-project-lite", - "tokio", "xz2", "zstd 0.11.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" checksum = "5b0122885821398cc923ece939e24d1056a2384ee719432397fa9db87230ff11" dependencies = [ + "brotli", "bzip2", "flate2", "futures-core", @@ -1054,15 +1053,15 @@ dependencies = [ [[package]] name = "hyper-rustls" -version = "0.23.2" +version = "0.24.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1788965e61b367cd03a62950836d5cd41560c3577d90e40e0819373194d1661c" +checksum = "0646026eb1b3eea4cd9ba47912ea5ce9cc07713d105b1a14698f4e6433d348b7" dependencies = [ "http", "hyper", - "rustls", + "rustls 0.21.1", "tokio", - "tokio-rustls", + "tokio-rustls 0.24.0", ] [[package]] @@ -1649,7 +1648,7 @@ dependencies = [ "fxhash", "quinn-proto", "quinn-udp", - "rustls", + "rustls 0.20.8", "thiserror", "tokio", "tracing", @@ -1666,7 +1665,7 @@ dependencies = [ "fxhash", "rand", "ring", - "rustls", + "rustls 0.20.8", "rustls-native-certs", "rustls-pemfile 0.2.1", "slab", @@ -1777,11 +1776,11 @@ checksum = "a5996294f19bd3aae0453a862ad728f60e6600695733dd5df01da90c54363a3c" [[package]] name = "reqwest" -version = "0.11.17" +version = "0.11.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "13293b639a097af28fc8a90f22add145a9c954e49d77da06263d58cf44d5fb91" +checksum = "cde824a14b7c14f85caff81225f411faacc04a2013f41670f41443742b1c1c55" dependencies = [ - "async-compression 0.3.15", + "async-compression 0.4.0", "base64 0.21.0", "bytes", "encoding_rs", @@ -1801,14 +1800,14 @@ dependencies = [ "once_cell", "percent-encoding", "pin-project-lite", - "rustls", + "rustls 0.21.1", "rustls-pemfile 1.0.2", "serde", "serde_json", "serde_urlencoded", "tokio", "tokio-native-tls", - "tokio-rustls", + "tokio-rustls 0.24.0", "tokio-util", "tower-service", "trust-dns-resolver", @@ -1887,6 +1886,18 @@ dependencies = [ "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]] name = "rustls-native-certs" version = "0.6.2" @@ -1917,6 +1928,16 @@ dependencies = [ "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]] name = "rustversion" version = "1.0.12" @@ -2321,11 +2342,21 @@ version = "0.23.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59" dependencies = [ - "rustls", + "rustls 0.20.8", "tokio", "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]] name = "tokio-stream" version = "0.1.14" @@ -2522,14 +2553,14 @@ dependencies = [ "quinn", "rand", "ring", - "rustls", + "rustls 0.20.8", "rustls-pemfile 1.0.2", "smallvec", "thiserror", "tinyvec", "tokio", "tokio-native-tls", - "tokio-rustls", + "tokio-rustls 0.23.4", "tracing", "url", "webpki", @@ -2549,12 +2580,12 @@ dependencies = [ "lru-cache", "parking_lot", "resolv-conf", - "rustls", + "rustls 0.20.8", "smallvec", "thiserror", "tokio", "tokio-native-tls", - "tokio-rustls", + "tokio-rustls 0.23.4", "tracing", "trust-dns-proto", "webpki-roots", diff --git a/crates/binstalk-downloader/Cargo.toml b/crates/binstalk-downloader/Cargo.toml index ee34b2bb..204bca82 100644 --- a/crates/binstalk-downloader/Cargo.toml +++ b/crates/binstalk-downloader/Cargo.toml @@ -23,7 +23,7 @@ futures-lite = { version = "1.13.0", default-features = false } futures-util = "0.3.28" generic-array = "0.14.7" 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_json = { version = "1.0.96", optional = true } # Use a fork here since we need PAX support, but the upstream