From 7304b4e143d47885f419ac886314624f03fdb950 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 3 Feb 2025 20:42:45 +0000 Subject: [PATCH] Bump redis from 0.25.4 to 0.28.2 Bumps [redis](https://github.com/redis-rs/redis-rs) from 0.25.4 to 0.28.2. - [Release notes](https://github.com/redis-rs/redis-rs/releases) - [Commits](https://github.com/redis-rs/redis-rs/compare/redis-0.25.4...redis-0.28.2) --- updated-dependencies: - dependency-name: redis dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 7 ++++--- server/Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 016e885..7a83d9a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2058,15 +2058,16 @@ dependencies = [ [[package]] name = "redis" -version = "0.25.4" +version = "0.28.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e0d7a6955c7511f60f3ba9e86c6d02b3c3f144f8c24b288d1f4e18074ab8bbec" +checksum = "e37ec3fd44bea2ec947ba6cc7634d7999a6590aca7c35827c250bc0de502bda6" dependencies = [ - "async-trait", + "arc-swap", "bytes", "combine", "futures-util", "itoa", + "num-bigint", "percent-encoding", "pin-project-lite", "ryu", diff --git a/server/Cargo.toml b/server/Cargo.toml index 19e55d3..ce097a3 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -40,7 +40,7 @@ rustls-pemfile = "2.2.0" x509-parser = "0.17.0" sha1 = "0.10.5" hex = "0.4.3" -redis = { version = "0.25.3", features = ["tokio-comp", "aio"]} +redis = { version = "0.28.2", features = ["tokio-comp", "aio"]} log4rs = "1.2.0" log-mdc = "0.1.0" tokio-util = "0.7.10"