From 1d6b3f2b1c95dc83bcbadacdc1de5a4e482847ce Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 5 Dec 2023 18:42:37 +0000 Subject: [PATCH] Update Rust crate redis to 0.24.0 --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fc6252f..ca9f5ee 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1046,9 +1046,9 @@ dependencies = [ [[package]] name = "redis" -version = "0.23.4" +version = "0.24.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1326371ccc7b3cd1c0c603f6eb3490a1ddecf1e7fb4a3caacf5db4684f5a7db9" +checksum = "c580d9cbbe1d1b479e8d67cf9daf6a62c957e6846048408b80b43ac3f6af84cd" dependencies = [ "arc-swap", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index 51c87b6..8c321a9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ version = "0.1.0" async-recursion = "1.0.5" actix-web = "4.4.0" lazy_static = "1.4.0" -redis = { version = "0.23.4", default-features = false, features = ["tokio-comp", "connection-manager"] } +redis = { version = "0.24.0", default-features = false, features = ["tokio-comp", "connection-manager"] } regex = "1.10.2" reqwest = { version = "0.11.22", default-features = false, features = ["rustls-tls", "gzip", "json", "socks"] } serde = {version = "1.0.193", default-features = false, features = ["derive"]}