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

update redis deps

This commit is contained in:
Rob Ede 2022-07-09 20:11:14 +01:00
parent 9bc014b96f
commit ecd7756644
No known key found for this signature in database
GPG Key ID: 97C636207D3EF933
2 changed files with 6 additions and 4 deletions

View File

@ -1,6 +1,9 @@
# Changes
## Unreleased - 2022-xx-xx
- Update `actix` dependency to `0.13`.
- Update `redis-async` dependency to `0.13`.
- Update `tokio-util` dependency to `0.7`.
- Minimum supported Rust version (MSRV) is now 1.57 due to transitive `time` dependency.

View File

@ -8,7 +8,6 @@ keywords = ["actix", "redis", "async", "session"]
homepage = "https://actix.rs"
repository = "https://github.com/actix/actix-extras.git"
categories = ["network-programming", "asynchronous"]
exclude = [".cargo/config"]
edition = "2018"
[lib]
@ -22,7 +21,7 @@ default = ["web"]
web = ["actix-web"]
[dependencies]
actix = { version = "0.12", default-features = false }
actix = { version = "0.13", default-features = false }
actix-rt = { version = "2.1", default-features = false }
actix-service = "2"
actix-tls = { version = "3", default-features = false, features = ["connect"] }
@ -31,10 +30,10 @@ log = "0.4.6"
backoff = "0.4.0"
derive_more = "0.99.5"
futures-core = { version = "0.3.7", default-features = false }
redis-async = { version = "0.12", default-features = false, features = ["tokio10"] }
redis-async = "0.13"
time = "0.3"
tokio = { version = "1.13.1", features = ["sync"] }
tokio-util = "0.6.1"
tokio-util = "0.7"
actix-web = { version = "4", default_features = false, optional = true }
[dev-dependencies]