From 79c5ea84c2b99ab69660d940689ccf540d7dd4a3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 Apr 2026 08:20:51 +0000 Subject: [PATCH] deps: bump redis from 0.24.0 to 1.1.0 Bumps [redis](https://github.com/redis-rs/redis-rs) from 0.24.0 to 1.1.0. - [Release notes](https://github.com/redis-rs/redis-rs/releases) - [Commits](https://github.com/redis-rs/redis-rs/compare/redis-0.24.0...redis-1.1.0) --- updated-dependencies: - dependency-name: redis dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 22 +++++++++++++++++++--- hole-punching-tests/Cargo.toml | 2 +- interop-tests/Cargo.toml | 2 +- 3 files changed, 21 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4d302d7e3d0..9ed0e0a3b55 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -120,6 +120,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.9" @@ -4458,21 +4464,25 @@ dependencies = [ [[package]] name = "redis" -version = "0.24.0" +version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c580d9cbbe1d1b479e8d67cf9daf6a62c957e6846048408b80b43ac3f6af84cd" +checksum = "f44e94c96d8870a387d88ce3de3fdd608cbfc0705f03cb343cdde91509d3e49a" dependencies = [ - "async-trait", + "arcstr", + "async-lock", "bytes", + "cfg-if", "combine", "futures-util", "itoa", "percent-encoding", "pin-project-lite", "ryu", + "socket2 0.6.0", "tokio", "tokio-util", "url", + "xxhash-rust", ] [[package]] @@ -7085,6 +7095,12 @@ dependencies = [ "xml-rs", ] +[[package]] +name = "xxhash-rust" +version = "0.8.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fdd20c5420375476fbd4394763288da7eb0cc0b8c11deed431a91562af7335d3" + [[package]] name = "yamux" version = "0.12.1" diff --git a/hole-punching-tests/Cargo.toml b/hole-punching-tests/Cargo.toml index a5bdbf961fc..f75657892e8 100644 --- a/hole-punching-tests/Cargo.toml +++ b/hole-punching-tests/Cargo.toml @@ -11,7 +11,7 @@ env_logger = { workspace = true } futures = { workspace = true } libp2p = { path = "../libp2p", features = ["tokio", "dcutr", "identify", "macros", "noise", "ping", "relay", "tcp", "yamux", "quic"] } tracing = { workspace = true } -redis = { version = "0.24.0", default-features = false, features = ["tokio-comp"] } +redis = { version = "1.2.0", default-features = false, features = ["tokio-comp"] } tokio = { workspace = true, features = ["full"] } serde = { version = "1.0.228", features = ["derive"] } serde_json = "1.0.149" diff --git a/interop-tests/Cargo.toml b/interop-tests/Cargo.toml index cd230ec521f..a9c76c32f32 100644 --- a/interop-tests/Cargo.toml +++ b/interop-tests/Cargo.toml @@ -27,7 +27,7 @@ libp2p-noise = { workspace = true } libp2p-tls = { workspace = true } libp2p-webrtc = { workspace = true, features = ["tokio"] } mime_guess = "2.0" -redis = { version = "0.24.0", default-features = false, features = [ +redis = { version = "1.2.0", default-features = false, features = [ "tokio-comp", ] } rust-embed = "8.11"