From 7a3c722ec4405c48623d7d383de933cf2b460805 Mon Sep 17 00:00:00 2001 From: "Michael P. Jung" Date: Sun, 4 Apr 2021 00:01:08 +0200 Subject: [PATCH] Change redis dependency to version 0.20 This is related to #90 --- redis/CHANGELOG.md | 1 + redis/Cargo.toml | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/redis/CHANGELOG.md b/redis/CHANGELOG.md index c70332ee..ec3b41ae 100644 --- a/redis/CHANGELOG.md +++ b/redis/CHANGELOG.md @@ -9,6 +9,7 @@ implements the `redis::aio::ConnectionLike` trait and therefore can be used with plain `Cmd` and `Pipe` objects from the `redis` crate. * Add support for new `redis::ConnectionInfo` structure. +* Change `redis` dependency to version `0.20` ## v0.7.1 diff --git a/redis/Cargo.toml b/redis/Cargo.toml index 46590bab..49caaf8c 100644 --- a/redis/Cargo.toml +++ b/redis/Cargo.toml @@ -16,14 +16,14 @@ all-features = true deadpool = { path = "../", version = "0.7", default-features = false, features = ["managed"] } async-trait = "0.1.17" log = "0.4" -redis = { version = ">=0.19,<=0.20", default-features = false, features = ["aio"] } +redis = { version = "0.20", default-features = false, features = ["aio"] } # only required when using the config feature config-crate = { package = "config", version = "0.11", default-features = false, optional = true } serde = { version = "1.0", features = ["derive"], optional = true} [dev-dependencies] tokio = { version = "1", features = ["macros", "rt-multi-thread"] } -redis = { version = ">=0.19,<=0.20", default-features = false, features = ["tokio-comp"] } +redis = { version = "0.20", default-features = false, features = ["tokio-comp"] } dotenv = "0.15.0" [features]