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

update actix-web dependencies to v4 beta.10 (#203)

Co-authored-by: Rob Ede <robjtede@icloud.com>
This commit is contained in:
Chiu-Hsiang Hsu
2021-10-21 13:10:00 +00:00
committed by GitHub
parent 627fe96be0
commit 545873b5b2
18 changed files with 42 additions and 32 deletions

View File

@ -1,8 +1,11 @@
# Changes
## Unreleased - 2020-xx-xx
* Update `actix-web` dependency to v4.0.0-beta.10. [#203]
* Minimum supported Rust version (MSRV) is now 1.52.
[#203]: https://github.com/actix/actix-extras/pull/203
## 0.10.0-beta.2 - 2020-06-27
* No notable changes.

View File

@ -32,7 +32,7 @@ web = [
actix = { version = "0.12.0", default-features = false }
actix-rt = { version = "2.1", default-features = false }
actix-service = "2.0.0"
actix-tls = { version = "3.0.0-beta.5", default-features = false, features = ["connect"] }
actix-tls = { version = "3.0.0-beta.7", default-features = false, features = ["connect"] }
log = "0.4.6"
backoff = "0.2.1"
@ -45,15 +45,15 @@ tokio = { version = "1", features = ["sync"] }
tokio-util = "0.6.1"
# actix-session
actix-web = { version = "4.0.0-beta.8", default_features = false, optional = true }
actix-web = { version = "4.0.0-beta.10", default_features = false, optional = true }
actix-session = { version = "0.5.0-beta.2", optional = true }
rand = { version = "0.8.0", optional = true }
serde = { version = "1.0.101", optional = true }
serde_json = { version = "1.0.40", optional = true }
[dev-dependencies]
actix-test = "0.1.0-beta.3"
actix-http = "3.0.0-beta.8"
actix-test = "0.1.0-beta.5"
actix-http = "3.0.0-beta.11"
actix-rt = "2.1"
env_logger = "0.8"
serde = { version = "1.0.101", features = ["derive"] }