From ed634b7b4a98e62c74583983d56bf5c9141f4f3b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 12 Mar 2026 00:54:33 +0000 Subject: [PATCH] build(deps): bump redis from 0.27.6 to 1.0.5 Bumps [redis](https://github.com/redis-rs/redis-rs) from 0.27.6 to 1.0.5. - [Release notes](https://github.com/redis-rs/redis-rs/releases) - [Commits](https://github.com/redis-rs/redis-rs/compare/redis-0.27.6...redis-1.0.5) --- updated-dependencies: - dependency-name: redis dependency-version: 1.0.5 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 34 +++++++++++++++++++--------------- Cargo.toml | 2 +- 2 files changed, 20 insertions(+), 16 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 464607e7..a81372ee 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -118,6 +118,12 @@ dependencies = [ "rustversion", ] +[[package]] +name = "arcstr" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "03918c3dbd7701a85c6b9887732e2921175f26c350b4563841d0958c21d57e6d" + [[package]] name = "asn1-rs" version = "0.7.1" @@ -1866,15 +1872,6 @@ dependencies = [ "either", ] -[[package]] -name = "itertools" -version = "0.13.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186" -dependencies = [ - "either", -] - [[package]] name = "itertools" version = "0.14.0" @@ -2635,26 +2632,27 @@ dependencies = [ [[package]] name = "redis" -version = "0.27.6" +version = "1.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "09d8f99a4090c89cc489a94833c901ead69bfbf3877b4867d5482e321ee875bc" +checksum = "b36964393906eb775b89b25b05b7b95685b8dd14062f1663a31ff93e75c452e5" dependencies = [ "arc-swap", - "async-trait", + "arcstr", "backon", "bytes", + "cfg-if", "combine", - "futures", + "futures-channel", "futures-util", - "itertools 0.13.0", "itoa", - "num-bigint", "percent-encoding", "pin-project-lite", "ryu", + "socket2 0.6.3", "tokio", "tokio-util", "url", + "xxhash-rust", ] [[package]] @@ -5881,6 +5879,12 @@ dependencies = [ "time", ] +[[package]] +name = "xxhash-rust" +version = "0.8.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fdd20c5420375476fbd4394763288da7eb0cc0b8c11deed431a91562af7335d3" + [[package]] name = "yasna" version = "0.5.2" diff --git a/Cargo.toml b/Cargo.toml index b2ae54b1..5b6a49ab 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -138,7 +138,7 @@ proc-macro2 = { version = "1", default-features = false } quinn = { version = "0.11.6", default-features = false } quote = { version = "1", default-features = false } rcgen = { version = "0.13", default-features = false } -redis = { version = "0.27", default-features = false } +redis = { version = "1.0", default-features = false } reqwest = { version = "0.11", default-features = false } rustls = { version = "0.23", default-features = false } semver = { version = "1", default-features = false }