mirror of
https://github.com/actix/actix-extras.git
synced 2024-11-23 15:51:06 +01:00
Update to actix-web beta.17 (#217)
This commit is contained in:
parent
6676a50944
commit
14a622092d
@ -1,7 +1,9 @@
|
||||
# Changes
|
||||
|
||||
## Unreleased - 2021-xx-xx
|
||||
* Update `actix-web` dependency to `4.0.0-beta.17`. [#217]
|
||||
|
||||
[#217]: https://github.com/actix/actix-extras/pull/217
|
||||
|
||||
## 0.6.0-beta.7 - 2021-12-18
|
||||
* Update `actix-web` dependency to `4.0.0.beta-15`. [#216]
|
||||
|
@ -19,7 +19,7 @@ path = "src/lib.rs"
|
||||
[dependencies]
|
||||
actix-service = "2"
|
||||
actix-utils = "3"
|
||||
actix-web = { version = "4.0.0-beta.15", default-features = false }
|
||||
actix-web = { version = "4.0.0-beta.17", default-features = false }
|
||||
|
||||
derive_more = "0.99.5"
|
||||
futures-util = { version = "0.3.7", default-features = false }
|
||||
|
@ -1,7 +1,9 @@
|
||||
# Changes
|
||||
|
||||
## Unreleased - 2021-xx-xx
|
||||
* Update `actix-web` dependency to `4.0.0-beta.17`. [#217]
|
||||
|
||||
[#217]: https://github.com/actix/actix-extras/pull/217
|
||||
|
||||
## 0.4.0-beta.6 - 2021-12-18
|
||||
* Update `actix-web` dependency to `4.0.0.beta-15`. [#216]
|
||||
|
@ -16,7 +16,7 @@ path = "src/lib.rs"
|
||||
[dependencies]
|
||||
actix-service = "2"
|
||||
actix-utils = "3"
|
||||
actix-web = { version = "4.0.0-beta.15", default-features = false, features = ["cookies", "secure-cookies"] }
|
||||
actix-web = { version = "4.0.0-beta.17", default-features = false, features = ["cookies", "secure-cookies"] }
|
||||
|
||||
futures-util = { version = "0.3.7", default-features = false }
|
||||
serde = "1.0"
|
||||
|
@ -1,7 +1,9 @@
|
||||
# Changes
|
||||
|
||||
## Unreleased - 2021-xx-xx
|
||||
* Update `actix-web` dependency to `4.0.0-beta.17`. [#217]
|
||||
|
||||
[#217]: https://github.com/actix/actix-extras/pull/217
|
||||
|
||||
## 0.7.0-beta.3 - 2021-12-12
|
||||
* Update `actix-web` dependency to `4.0.0.beta-14`. [#209]
|
||||
|
@ -19,7 +19,7 @@ path = "src/lib.rs"
|
||||
|
||||
[dependencies]
|
||||
actix-rt = "2"
|
||||
actix-web = { version = "4.0.0-beta.14", default_features = false }
|
||||
actix-web = { version = "4.0.0-beta.17", default_features = false }
|
||||
derive_more = "0.99.5"
|
||||
futures-util = { version = "0.3.7", default-features = false }
|
||||
prost = { version = "0.8", default_features = false }
|
||||
|
@ -8,7 +8,7 @@ authors = [
|
||||
]
|
||||
|
||||
[dependencies]
|
||||
actix-web = "4.0.0-beta.14"
|
||||
actix-web = "4.0.0-beta.17"
|
||||
actix-protobuf = { path = "../../" }
|
||||
|
||||
env_logger = "0.8"
|
||||
|
@ -1,7 +1,9 @@
|
||||
# Changes
|
||||
|
||||
## Unreleased - 2021-xx-xx
|
||||
* Update `actix-web` dependency to `4.0.0-beta.17`. [#217]
|
||||
|
||||
[#217]: https://github.com/actix/actix-extras/pull/217
|
||||
|
||||
## 0.10.0-beta.4 - 2021-12-12
|
||||
* A session will be created in Redis if and only if there is some data inside the session state. This reduces the performance impact of `RedisSession` on routes that do not leverage sessions. [#207]
|
||||
|
@ -45,14 +45,14 @@ tokio = { version = "1", features = ["sync"] }
|
||||
tokio-util = "0.6.1"
|
||||
|
||||
# actix-session
|
||||
actix-web = { version = "4.0.0-beta.14", default_features = false, optional = true }
|
||||
actix-web = { version = "4.0.0-beta.17", default_features = false, optional = true }
|
||||
actix-session = { version = "0.5.0-beta.6", 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.8"
|
||||
actix-test = "0.1.0-beta.10"
|
||||
actix-rt = "2.1"
|
||||
env_logger = "0.8"
|
||||
serde = { version = "1.0.101", features = ["derive"] }
|
||||
|
@ -1,7 +1,9 @@
|
||||
# Changes
|
||||
|
||||
## Unreleased - 2021-xx-xx
|
||||
* Update `actix-web` dependency to `4.0.0-beta.17`. [#217]
|
||||
|
||||
[#217]: https://github.com/actix/actix-extras/pull/217
|
||||
|
||||
## 0.5.0-beta.6 - 2021-12-18
|
||||
* Update `actix-web` dependency to `4.0.0.beta-15`. [#216]
|
||||
|
@ -20,7 +20,7 @@ cookie-session = ["actix-web/secure-cookies"]
|
||||
[dependencies]
|
||||
actix-service = "2"
|
||||
actix-utils = "3"
|
||||
actix-web = { version = "4.0.0-beta.15", default_features = false, features = ["cookies"] }
|
||||
actix-web = { version = "4.0.0-beta.17", default_features = false, features = ["cookies"] }
|
||||
|
||||
derive_more = "0.99.5"
|
||||
futures-util = { version = "0.3.7", default-features = false }
|
||||
|
@ -1,7 +1,9 @@
|
||||
# Changes
|
||||
|
||||
## Unreleased - 2021-xx-xx
|
||||
|
||||
* Update `actix-web` dependency to `4.0.0-beta.17`. [#217]
|
||||
|
||||
[#217]: https://github.com/actix/actix-extras/pull/217
|
||||
|
||||
## 0.6.0-beta.6 - 2021-12-18
|
||||
* Update `actix-web` dependency to `4.0.0.beta-15`. [#216]
|
||||
|
@ -20,7 +20,7 @@ path = "src/lib.rs"
|
||||
[dependencies]
|
||||
actix-service = "2"
|
||||
actix-utils = "3"
|
||||
actix-web = { version = "4.0.0-beta.15", default_features = false }
|
||||
actix-web = { version = "4.0.0-beta.17", default_features = false }
|
||||
|
||||
base64 = "0.13"
|
||||
futures-util = { version = "0.3.7", default-features = false }
|
||||
|
Loading…
Reference in New Issue
Block a user