From 70230b1b6721c801a5b143968c823bc3af20af99 Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Wed, 14 Feb 2024 13:56:18 +0100 Subject: [PATCH] Upgrade redis dependencies --- omniqueue/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/omniqueue/Cargo.toml b/omniqueue/Cargo.toml index 3851e76..09321ec 100644 --- a/omniqueue/Cargo.toml +++ b/omniqueue/Cargo.toml @@ -14,12 +14,12 @@ async-trait = "0.1" aws-config = { version = "0.55", optional = true } aws-sdk-sqs = { version = "0.25", optional = true } bb8 = { version = "0.8", optional = true } -bb8-redis = { version = "0.13", optional = true } +bb8-redis = { version = "0.14.0", optional = true } futures-util = { version = "0.3.28", default-features = false, features = ["async-await", "std"], optional = true } google-cloud-googleapis = { version = "0.10.0", optional = true } google-cloud-pubsub = { version = "0.18.0", optional = true } lapin = { version = "2", optional = true } -redis = { version = "0.23", features = ["tokio-comp", "tokio-native-tls-comp", "streams"], optional = true } +redis = { version = "0.24.0", features = ["tokio-comp", "tokio-native-tls-comp", "streams"], optional = true } serde = "1.0.196" serde_json = "1" svix-ksuid = { version = "0.7.0", optional = true }