1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-27 17:22:57 +01:00

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

This commit is contained in:
Yuki Okushi 2020-03-13 06:01:39 +09:00
parent 62cf9baa51
commit 570209c1b1
No known key found for this signature in database
GPG Key ID: B0986C85C0E2DAA1
3 changed files with 7 additions and 6 deletions

View File

@ -3,7 +3,7 @@
[workspace] [workspace]
members = [ members = [
"actix-cors", "actix-cors",
# "actix-identity", "actix-identity",
"actix-protobuf", "actix-protobuf",
"actix-redis", "actix-redis",
# "actix-session", # "actix-session",

View File

@ -1,8 +1,9 @@
# Changes # Changes
## [Unreleased] - 2020-xx-xx ## [0.3.0-alpha.1] - 2020-03-12
* Update the `time` dependency to 0.2.5 * Update the `time` dependency to 0.2.7
* Update the `actix-web` dependency to 3.0.0-alpha.1
## [0.2.1] - 2020-01-10 ## [0.2.1] - 2020-01-10

View File

@ -16,14 +16,14 @@ name = "actix_identity"
path = "src/lib.rs" path = "src/lib.rs"
[dependencies] [dependencies]
actix-web = { version = "2.0.0", default-features = false, features = ["secure-cookies"] } actix-web = { version = "3.0.0-alpha.1", default-features = false, features = ["secure-cookies"] }
actix-service = "1.0.2" actix-service = "1.0.2"
futures = "0.3.1" futures = "0.3.1"
serde = "1.0" serde = "1.0"
serde_json = "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] [dev-dependencies]
actix-rt = "1.0.0" actix-rt = "1.0.0"
actix-http = "1.0.1" actix-http = "2.0.0-alpha.2"
bytes = "0.5.3" bytes = "0.5.3"