From e48aa8630d492b57d34ed6a34db582c307ce4c55 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 May 2026 09:25:05 +0000 Subject: [PATCH] deps: bump redis from 0.24.0 to 1.2.1 Bumps [redis](https://github.com/redis-rs/redis-rs) from 0.24.0 to 1.2.1. - [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.2.1) --- updated-dependencies: - dependency-name: redis dependency-version: 1.2.1 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 541353dc08d..765d01ebec5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -144,6 +144,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" @@ -4546,21 +4552,25 @@ dependencies = [ [[package]] name = "redis" -version = "0.24.0" +version = "1.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c580d9cbbe1d1b479e8d67cf9daf6a62c957e6846048408b80b43ac3f6af84cd" +checksum = "72d32a1ac9123f0d84fda64bfc02a271d9868483162dd2d9099b5c362ece064c" dependencies = [ - "async-trait", + "arcstr", + "async-lock", "bytes", + "cfg-if", "combine", "futures-util", "itoa", "percent-encoding", "pin-project-lite", "ryu", + "socket2 0.6.3", "tokio", "tokio-util", "url", + "xxhash-rust", ] [[package]] @@ -7319,6 +7329,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..8eeb6822f0d 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.1", 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 84a390b5354..dc1c1c6b304 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.1", default-features = false, features = [ "tokio-comp", ] } rust-embed = "8.11"