Skip to content

Commit

Permalink
Change redis dependency to version 0.20
Browse files Browse the repository at this point in the history
This is related to #90
  • Loading branch information
bikeshedder committed Apr 3, 2021
1 parent d1c703a commit 7a3c722
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions redis/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions redis/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit 7a3c722

Please sign in to comment.