From 372a9876fa9a625eca75ad9a480a49227aa383ff Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 10 Nov 2025 05:01:11 +0000 Subject: [PATCH] Update Rust crate redis to 0.32.0 --- Cargo.lock | 7 ++++--- Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8dc5386..89e8d43 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1231,13 +1231,14 @@ dependencies = [ [[package]] name = "redis" -version = "0.29.5" +version = "0.32.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1bc42f3a12fd4408ce64d8efef67048a924e543bd35c6591c0447fda9054695f" +checksum = "014cc767fefab6a3e798ca45112bccad9c6e0e218fbd49720042716c73cfef44" dependencies = [ "arc-swap", "backon", "bytes", + "cfg-if", "combine", "futures-channel", "futures-util", @@ -1246,7 +1247,7 @@ dependencies = [ "percent-encoding", "pin-project-lite", "ryu", - "socket2 0.5.10", + "socket2 0.6.1", "tokio", "tokio-util", "url", diff --git a/Cargo.toml b/Cargo.toml index da2e8dc..8e5ea68 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ version = "0.1.0" async-recursion = "1.1.1" actix-web = "4.5.1" lazy_static = "1.4.0" -redis = { version = "0.29.0", default-features = false, features = ["tokio-comp", "connection-manager"] } +redis = { version = "0.32.0", default-features = false, features = ["tokio-comp", "connection-manager"] } regex = "1.10.4" reqwest = { version = "0.12.4", default-features = false, features = ["rustls-tls", "gzip", "json", "socks"] } serde = {version = "1.0.200", default-features = false, features = ["derive"]}