From b22dc2db01448d8385fd46a0051605d609f98f58 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 29 May 2024 07:09:40 +0000 Subject: [PATCH] chore(cargo): update redis requirement from 0.24.0 to 0.25.4 Updates the requirements on [redis](https://github.com/redis-rs/redis-rs) to permit the latest version. - [Release notes](https://github.com/redis-rs/redis-rs/releases) - [Commits](https://github.com/redis-rs/redis-rs/compare/redis-0.24.0...redis-0.25.4) --- updated-dependencies: - dependency-name: redis dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index dc1e36d..425654b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -34,13 +34,13 @@ reqwest_cookie_store = "0.6" typed-builder = "0.18" fang = { version = "0.10.3", features = ["asynk"], default-features = false } redis-macros = { version = "0.3.0", optional = true } -redis = { version = "0.24.0", optional = true } +redis = { version = "0.25.4", optional = true } serde_json = { version = "1.0.91" } log = "0.4.20" lazy_static = "1.4.0" [dev-dependencies] redis-macros = { version = "0.3.0" } -redis = { version = "0.24.0" } +redis = { version = "0.25.4" } [dependencies.bb8-postgres]