From bf49b39740c334e6c75b56d0bbdffda04f6832c3 Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Tue, 10 Jan 2023 09:03:27 +0000 Subject: [PATCH] use secure tokio version range see RUSTSEC-2023-0001 part of actix/actix-web#2962 --- actix-redis/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actix-redis/Cargo.toml b/actix-redis/Cargo.toml index 6d35b3b2d..9fe9422aa 100644 --- a/actix-redis/Cargo.toml +++ b/actix-redis/Cargo.toml @@ -36,7 +36,7 @@ derive_more = "0.99.7" futures-core = { version = "0.3.7", default-features = false } redis-async = "0.14" time = "0.3" -tokio = { version = "1.13.1", features = ["sync"] } +tokio = { version = "1.18.4", features = ["sync"] } tokio-util = "0.7" actix-web = { version = "4", default_features = false, optional = true }