Skip to content

Commit

Permalink
update redis deps
Browse files Browse the repository at this point in the history
  • Loading branch information
robjtede committed Jul 9, 2022
1 parent 9bc014b commit ecd7756
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
3 changes: 3 additions & 0 deletions actix-redis/CHANGES.md
Original file line number Diff line number Diff line change
@@ -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.


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

0 comments on commit ecd7756

Please sign in to comment.