From 1036f54fd08dc39e01ef251e380d0fad1bd34549 Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Sat, 7 Jan 2023 01:09:34 +0000 Subject: [PATCH] update redis-async to 0.14 --- actix-redis/CHANGES.md | 1 + actix-redis/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/actix-redis/CHANGES.md b/actix-redis/CHANGES.md index 6ef8aac47..1d87755a5 100644 --- a/actix-redis/CHANGES.md +++ b/actix-redis/CHANGES.md @@ -2,6 +2,7 @@ ## Unreleased - 2022-xx-xx +- Update `redis-async` dependency to `0.14`. - Minimum supported Rust version (MSRV) is now 1.59 due to transitive `time` dependency. ## 0.12.0 - 2022-07-09 diff --git a/actix-redis/Cargo.toml b/actix-redis/Cargo.toml index 9780eb3c1..6d35b3b2d 100644 --- a/actix-redis/Cargo.toml +++ b/actix-redis/Cargo.toml @@ -34,7 +34,7 @@ log = "0.4.6" backoff = "0.4.0" derive_more = "0.99.7" futures-core = { version = "0.3.7", default-features = false } -redis-async = "0.13" +redis-async = "0.14" time = "0.3" tokio = { version = "1.13.1", features = ["sync"] } tokio-util = "0.7"