From dbc82001c09a2e96c6d14c193c9d373fbcbe10a0 Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Thu, 3 Feb 2022 22:11:59 +0000 Subject: [PATCH] address dep vuln warnings --- actix-cors/Cargo.toml | 2 +- actix-redis/Cargo.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/actix-cors/Cargo.toml b/actix-cors/Cargo.toml index c30e927bc..8f0507d06 100644 --- a/actix-cors/Cargo.toml +++ b/actix-cors/Cargo.toml @@ -25,7 +25,7 @@ derive_more = "0.99.5" futures-util = { version = "0.3.7", default-features = false } log = "0.4" once_cell = "1" -smallvec = "1.6" +smallvec = "1.6.1" [dev-dependencies] actix-rt = "2" diff --git a/actix-redis/Cargo.toml b/actix-redis/Cargo.toml index 7b0c899b4..5e1a71de6 100644 --- a/actix-redis/Cargo.toml +++ b/actix-redis/Cargo.toml @@ -41,7 +41,7 @@ futures-core = { version = "0.3.7", default-features = false } redis2 = { package = "redis", version = "0.19.0", features = ["tokio-comp", "tokio-native-tls-comp"] } redis-async = { version = "0.8", default-features = false, features = ["tokio10"] } time = "0.3" -tokio = { version = "1", features = ["sync"] } +tokio = { version = "1.13.1", features = ["sync"] } tokio-util = "0.6.1" # actix-session @@ -54,7 +54,7 @@ serde_json = { version = "1.0.40", optional = true } [dev-dependencies] actix-test = "0.1.0-beta.10" actix-rt = "2.1" -env_logger = "0.8" +env_logger = "0.0" serde = { version = "1.0.101", features = ["derive"] } [[example]]