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

session: Update actix-web dependency to 3.0.0-alpha.1

This commit is contained in:
Yuki Okushi 2020-03-13 06:04:07 +09:00
parent 570209c1b1
commit 30ee6e0b4c
No known key found for this signature in database
GPG Key ID: B0986C85C0E2DAA1
3 changed files with 9 additions and 6 deletions

View File

@ -6,6 +6,6 @@ members = [
"actix-identity",
"actix-protobuf",
"actix-redis",
# "actix-session",
"actix-session",
"actix-web-httpauth",
]

View File

@ -1,9 +1,12 @@
# Changes
## [Unreleased] - 2020-01-xx
## [0.4.0-alpha.1] - 2020-03-12
* Update the `time` dependency to 0.2.5
* [#1292](https://github.com/actix/actix-web/pull/1292) Long lasting auto-prolonged session
* Update the `time` dependency to 0.2.7
* Update the `actix-web` dependency to 3.0.0-alpha.1
* Long lasting auto-prolonged session [#1292]
[#1292]: https://github.com/actix/actix-web/pull/1292
## [0.3.0] - 2019-12-20

View File

@ -22,14 +22,14 @@ default = ["cookie-session"]
cookie-session = ["actix-web/secure-cookies"]
[dependencies]
actix-web = "2.0.0"
actix-web = "3.0.0-alpha.1"
actix-service = "1.0.1"
bytes = "0.5.3"
derive_more = "0.99.2"
futures = "0.3.1"
serde = "1.0"
serde_json = "1.0"
time = { version = "0.2.5", default-features = false, features = ["std"] }
time = { version = "0.2.7", default-features = false, features = ["std"] }
[dev-dependencies]
actix-rt = "1.0.0"