1
0
mirror of https://github.com/actix/actix-extras.git synced 2025-06-26 18:37:41 +02:00

update all packages to use actix-web v3 (#94)

This commit is contained in:
Rob Ede
2020-09-11 16:26:15 +01:00
committed by GitHub
parent 7e6bdf2eb2
commit bad5f32a68
22 changed files with 73 additions and 70 deletions

View File

@ -1,8 +1,8 @@
# Changes
## unreleased
* Minimize `futures` dependency
## Unreleased - 2020-xx-xx
* Update `actix-web` dependency to 3.0.0.
* Minimize `futures` dependency.
## [0.9.0-alpha.2]

View File

@ -21,10 +21,18 @@ path = "src/lib.rs"
default = ["web"]
# actix-web integration
web = ["actix-http/actors", "actix-service", "actix-web", "actix-session/cookie-session", "rand", "serde", "serde_json"]
web = [
"actix-http/actors",
"actix-service",
"actix-web",
"actix-session/cookie-session",
"rand",
"serde",
"serde_json"
]
[dependencies]
actix = "0.10.0-alpha.3"
actix = "0.10.0"
actix-utils = "1.0.3"
log = "0.4.6"
@ -32,15 +40,15 @@ backoff = "0.2.1"
derive_more = "0.99.2"
futures-util = { version = "0.3.5", default-features = false }
redis-async = "0.6.1"
actix-rt = "1.0.0"
actix-rt = "1.1.1"
time = "0.2.9"
tokio = "0.2.6"
tokio-util = "0.3.0"
# actix-session
actix-web = { version = "3.0.0-alpha.2", default_features = false, optional = true }
actix-http = { version = "2.0.0-alpha.3", optional = true }
actix-service = { version = "1.0.0", optional = true }
actix-web = { version = "3.0.0", default_features = false, optional = true }
actix-http = { version = "2.0.0", optional = true }
actix-service = { version = "1.0.6", optional = true }
actix-session = { version = "0.4.0-alpha.1", optional = true }
rand = { version = "0.7.0", optional = true }
serde = { version = "1.0.101", optional = true }

View File

@ -6,6 +6,9 @@
//! * [Chat on gitter](https://gitter.im/actix/actix)
//! * Cargo package: [actix-redis](https://crates.io/crates/actix-redis)
//! * Minimum supported Rust version: 1.40.0 or later
#![deny(rust_2018_idioms)]
mod redis;
pub use redis::{Command, RedisActor};