From 155d3d57c7bd46c2caf1f58e7ec6ff2d5e9fc07a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 19 May 2025 16:31:08 +0000 Subject: [PATCH] build(deps): bump deadpool-redis from 0.20.0 to 0.21.0 Bumps [deadpool-redis](https://github.com/bikeshedder/deadpool) from 0.20.0 to 0.21.0. - [Changelog](https://github.com/deadpool-rs/deadpool/blob/master/CHANGELOG.md) - [Commits](https://github.com/bikeshedder/deadpool/compare/deadpool-redis-v0.20.0...deadpool-redis-v0.21.0) --- updated-dependencies: - dependency-name: deadpool-redis dependency-version: 0.21.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 31 ++++++++++++++++++++++++++----- actix-session/Cargo.toml | 2 +- 2 files changed, 27 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 26e1370ae..dbe8aaa2e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -127,7 +127,7 @@ dependencies = [ "chrono", "derive_more", "log", - "redis", + "redis 0.29.5", "static_assertions", "time", "uuid", @@ -219,7 +219,7 @@ dependencies = [ "deadpool-redis", "derive_more", "rand 0.9.0", - "redis", + "redis 0.29.5", "serde", "serde_json", "tracing", @@ -852,12 +852,12 @@ dependencies = [ [[package]] name = "deadpool-redis" -version = "0.20.0" +version = "0.21.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c136f185b3ca9d1f4e4e19c11570e1002f4bfdd592d589053e225716d613851f" +checksum = "b46e5b9e5b5e7d563ac3dfbf100d30139514961dc022fc44efbfbf7a8ee7dfce" dependencies = [ "deadpool", - "redis", + "redis 0.31.0", ] [[package]] @@ -2023,6 +2023,27 @@ dependencies = [ "url", ] +[[package]] +name = "redis" +version = "0.31.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0bc1ea653e0b2e097db3ebb5b7f678be339620b8041f66b30a308c1d45d36a7f" +dependencies = [ + "bytes", + "cfg-if", + "combine", + "futures-util", + "itoa", + "num-bigint", + "percent-encoding", + "pin-project-lite", + "ryu", + "socket2", + "tokio", + "tokio-util", + "url", +] + [[package]] name = "redox_syscall" version = "0.5.11" diff --git a/actix-session/Cargo.toml b/actix-session/Cargo.toml index 4de55b94d..d20e3762c 100644 --- a/actix-session/Cargo.toml +++ b/actix-session/Cargo.toml @@ -39,7 +39,7 @@ tracing = { version = "0.1.30", default-features = false, features = ["log"] } # redis-session redis = { version = "0.29", default-features = false, features = ["tokio-comp", "connection-manager"], optional = true } -deadpool-redis = { version = "0.20", optional = true } +deadpool-redis = { version = "0.21", optional = true } [dev-dependencies] actix-session = { path = ".", features = ["cookie-session", "redis-session"] }