From ba2d7baab63b35838f0fd8601d2b29da8042f72b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Dec 2025 03:25:35 +0000 Subject: [PATCH] build(deps): bump redis from 0.32.7 to 1.0.0 Bumps [redis](https://github.com/redis-rs/redis-rs) from 0.32.7 to 1.0.0. - [Release notes](https://github.com/redis-rs/redis-rs/releases) - [Commits](https://github.com/redis-rs/redis-rs/compare/redis-0.32.7...redis-1.0.0) --- updated-dependencies: - dependency-name: redis dependency-version: 1.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 20 +++++++++++++++++--- Cargo.toml | 2 +- 2 files changed, 18 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 321903f..f1dd8da 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -89,6 +89,12 @@ version = "1.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457" +[[package]] +name = "arcstr" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "03918c3dbd7701a85c6b9887732e2921175f26c350b4563841d0958c21d57e6d" + [[package]] name = "argon2" version = "0.5.3" @@ -1721,7 +1727,7 @@ dependencies = [ "once_cell", "socket2", "tracing", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] @@ -1800,11 +1806,12 @@ dependencies = [ [[package]] name = "redis" -version = "0.32.7" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "014cc767fefab6a3e798ca45112bccad9c6e0e218fbd49720042716c73cfef44" +checksum = "47ba378d39b8053bffbfc2750220f5a24a06189b5129523d5db01618774e0239" dependencies = [ "arc-swap", + "arcstr", "backon", "bytes", "cfg-if", @@ -1821,6 +1828,7 @@ dependencies = [ "tokio", "tokio-util", "url", + "xxhash-rust", ] [[package]] @@ -3331,6 +3339,12 @@ version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb" +[[package]] +name = "xxhash-rust" +version = "0.8.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fdd20c5420375476fbd4394763288da7eb0cc0b8c11deed431a91562af7335d3" + [[package]] name = "yaml-rust2" version = "0.10.4" diff --git a/Cargo.toml b/Cargo.toml index fc2fa94..ed9d7f5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -55,7 +55,7 @@ rand = "0.9" reqwest = { version = "0.12", default-features = false, features = ["json","stream","gzip","brotli","deflate","rustls-tls"] } # Rate limiting / Redis -redis = { version = "0.32", features = ["tokio-comp","aio","connection-manager"] } +redis = { version = "1.0", features = ["tokio-comp","aio","connection-manager"] } dashmap = "5" # Database (added for persistence phase groundwork)