1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-23 15:51:06 +01:00

Merge pull request #56 from JohnTitor/redis-0.8

redis: Bump up to 0.8.2
This commit is contained in:
Yuki Okushi 2020-05-17 20:59:57 +09:00 committed by GitHub
commit cfdf884bca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 2 deletions

View File

@ -1,5 +1,9 @@
# Changes # Changes
## [0.8.2] 2020-05-17
* Pin `redis-async` version to use `tokio-util` 0.2
## [0.8.1] 2020-02-18 ## [0.8.1] 2020-02-18
* Move `env_logger` dependency to dev-dependencies and update to 0.7 * Move `env_logger` dependency to dev-dependencies and update to 0.7

View File

@ -1,6 +1,6 @@
[package] [package]
name = "actix-redis" name = "actix-redis"
version = "0.8.1" version = "0.8.2"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"] authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
description = "Redis integration for actix framework" description = "Redis integration for actix framework"
license = "MIT/Apache-2.0" license = "MIT/Apache-2.0"
@ -31,7 +31,7 @@ log = "0.4.6"
backoff = "0.1.5" backoff = "0.1.5"
derive_more = "0.99.2" derive_more = "0.99.2"
futures = "0.3.1" futures = "0.3.1"
redis-async = "0.6.1" redis-async = "=0.6.2"
actix-rt = "1.0.0" actix-rt = "1.0.0"
time = "0.1.42" time = "0.1.42"
tokio = "0.2.6" tokio = "0.2.6"