diff --git a/Cargo.lock b/Cargo.lock index c93985b7..9e31bbf5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -119,12 +119,6 @@ dependencies = [ "windows-sys 0.59.0", ] -[[package]] -name = "arc-swap" -version = "1.7.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457" - [[package]] name = "async-stream" version = "0.3.6" @@ -1057,7 +1051,7 @@ dependencies = [ "tokio", "tokio-rustls 0.26.2", "tower-service", - "webpki-roots", + "webpki-roots 0.26.10", ] [[package]] @@ -1995,11 +1989,10 @@ dependencies = [ [[package]] name = "redis" -version = "0.30.0" +version = "0.32.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "438a4e5f8e9aa246d6f3666d6978441bf1b37d5f417b50c4dd220be09f5fcc17" +checksum = "f2f6fd3fd5bb3a9a48819ae5cbad501968f208c1abd139649e7e2cf5d7f4b40b" dependencies = [ - "arc-swap", "bytes", "cfg-if", "combine", @@ -2020,7 +2013,7 @@ dependencies = [ "tokio-rustls 0.26.2", "tokio-util", "url", - "webpki-roots", + "webpki-roots 1.0.1", ] [[package]] @@ -2116,7 +2109,7 @@ dependencies = [ "wasm-bindgen", "wasm-bindgen-futures", "web-sys", - "webpki-roots", + "webpki-roots 0.26.10", "windows-registry", ] @@ -2542,7 +2535,7 @@ dependencies = [ "tokio-stream", "tracing", "url", - "webpki-roots", + "webpki-roots 0.26.10", ] [[package]] @@ -3238,7 +3231,7 @@ dependencies = [ "thiserror 2.0.12", "url", "utf-8", - "webpki-roots", + "webpki-roots 0.26.10", ] [[package]] @@ -3338,7 +3331,7 @@ dependencies = [ "rustls 0.23.26", "rustls-pki-types", "url", - "webpki-roots", + "webpki-roots 0.26.10", ] [[package]] @@ -3577,6 +3570,15 @@ dependencies = [ "rustls-pki-types", ] +[[package]] +name = "webpki-roots" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8782dd5a41a24eed3a4f40b606249b3e236ca61adf1f25ea4d45c73de122b502" +dependencies = [ + "rustls-pki-types", +] + [[package]] name = "whoami" version = "1.6.0" diff --git a/Cargo.toml b/Cargo.toml index 4f45e448..c5476dd0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" rust-version = "1.81.0" [dependencies] -redis = { version = "0.30.0", default-features = false, features = ["tokio-comp", "aio", "cluster", "cluster-async", "keep-alive", "tls-rustls", "tokio-rustls-comp", "tls-rustls-webpki-roots", "tls-rustls-insecure"] } +redis = { version = "0.32.2", default-features = false, features = ["tokio-comp", "aio", "cluster", "cluster-async", "keep-alive", "tls-rustls", "tokio-rustls-comp", "tls-rustls-webpki-roots", "tls-rustls-insecure"] } serde = { version = "1.0.217", features = ["derive"] } serde_json = "1.0.139" thiserror = "2.0.11"