From 3c5d02c86ad735b54d3b75d354ad2f1176d330e3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 13 Jan 2026 02:21:53 +0000 Subject: [PATCH] build(deps): bump redis from 0.31.0 to 1.0.2 Bumps [redis](https://github.com/redis-rs/redis-rs) from 0.31.0 to 1.0.2. - [Release notes](https://github.com/redis-rs/redis-rs/releases) - [Commits](https://github.com/redis-rs/redis-rs/compare/redis-0.31.0...redis-1.0.2) --- updated-dependencies: - dependency-name: redis dependency-version: 1.0.2 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 20 ++++++++++++++------ Cargo.toml | 2 +- 2 files changed, 15 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index cae8894e939..2b88ea552aa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -414,6 +414,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 = "arrayref" version = "0.3.7" @@ -984,9 +990,9 @@ dependencies = [ [[package]] name = "backon" -version = "1.5.0" +version = "1.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fd0b50b1b78dbadd44ab18b3c794e496f3a139abb9fbc27d9c94c4eebbb96496" +checksum = "cffb0e931875b666fc4fcb20fee52e9bbd1ef836fd9e9e04ec21555f9f85f7ef" dependencies = [ "fastrand", ] @@ -3921,7 +3927,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4b0f83760fb341a774ed326568e19f5a863af4a952def8c39f9ab92fd95b88e5" dependencies = [ "equivalent", - "hashbrown 0.15.2", + "hashbrown 0.16.1", "serde", "serde_core", ] @@ -5613,11 +5619,12 @@ dependencies = [ [[package]] name = "redis" -version = "0.31.0" +version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0bc1ea653e0b2e097db3ebb5b7f678be339620b8041f66b30a308c1d45d36a7f" +checksum = "5dfe20977fe93830c0e9817a16fbf1ed1cfd8d4bba366087a1841d2c6033c251" dependencies = [ "arc-swap", + "arcstr", "backon", "bytes", "cfg-if 1.0.0", @@ -5630,10 +5637,11 @@ dependencies = [ "pin-project-lite", "ryu", "sha1_smol", - "socket2 0.5.7", + "socket2 0.6.0", "tokio", "tokio-util 0.7.18", "url", + "xxhash-rust", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 91b4df27cec..673adc523aa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -68,7 +68,7 @@ itertools = "0.14.0" lazy_static = "1.5.0" prost = "0.13" prost-types = "0.13" -redis = { version = "0.31.0", features = [ +redis = { version = "1.0.2", features = [ "aio", "connection-manager", "tokio-comp",