From 945a9fb32c5c058c1ec7c4b1cf25c41e40be4111 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 7 Oct 2024 17:03:06 +0000 Subject: [PATCH] Update redis requirement from 0.25.1 to 0.27.3 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.25.1...redis-0.27.3) --- updated-dependencies: - dependency-name: redis dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index f71fdf7..8919821 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ crate-type = ["cdylib"] [dependencies] async-trait = "0.1.73" -redis = { version = "0.25.1", features = ["tokio-comp", "cluster-async"] } +redis = { version = "0.27.3", features = ["tokio-comp", "cluster-async"] } pyo3 = { version = "0.20.0", features = ["extension-module"] } pyo3-asyncio = { version = "0.20.0", features = ["tokio-runtime"] } tokio = "1.32.0"