From 8c019519b99fc5f2e4f1cb060e6cd301beca15dc Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Thu, 11 Jul 2019 15:11:05 +0600 Subject: [PATCH] update redis examples --- actix_redis/Cargo.toml | 4 ++-- redis-session/Cargo.toml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/actix_redis/Cargo.toml b/actix_redis/Cargo.toml index 2633ef23..f1534fe3 100644 --- a/actix_redis/Cargo.toml +++ b/actix_redis/Cargo.toml @@ -7,8 +7,8 @@ workspace = ".." [dependencies] actix = "0.8.2" -actix-web = "1.0.0" -actix-redis = { git="https://github.com/actix/actix-redis.git" } +actix-web = "1.0.3" +actix-redis = "0.6" futures = "0.1.23" redis-async = "0.4.0" serde = "1.0.71" diff --git a/redis-session/Cargo.toml b/redis-session/Cargo.toml index 74943def..7a6c64b1 100644 --- a/redis-session/Cargo.toml +++ b/redis-session/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] actix = "0.8.2" -actix-web = "1.0.0" +actix-web = "1.0.3" actix-session = "0.1.0" -actix-redis = { git = "https://github.com/actix/actix-redis.git", features = ["web"] } +actix-redis = { version = "0.6", features = ["web"] } env_logger = "0.6"