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

upgrade derive_more

This commit is contained in:
Nikolay Kim 2019-11-25 17:59:14 +06:00
parent c5907747ad
commit c1c44a7dd6
9 changed files with 15 additions and 11 deletions

View File

@ -1,9 +1,11 @@
# Changes
## [2.0.0-alpha.2] - 2019-xx-xx
## [2.0.0-alpha.1] - 2019-11-22
### Changed
* Migrated to `std::future`
* Remove implementation of `Responder` for `()`. (#1167)

View File

@ -83,7 +83,7 @@ actix-threadpool = "0.2.0-alpha.1"
awc = { version = "0.3.0-alpha.1", optional = true }
bytes = "0.4"
derive_more = "0.15.0"
derive_more = "0.99.2"
encoding_rs = "0.8"
futures = "0.3.1"
hashbrown = "0.6.3"
@ -125,6 +125,8 @@ actix-http = { path = "actix-http" }
actix-http-test = { path = "test-server" }
actix-web-codegen = { path = "actix-web-codegen" }
# actix-web-actors = { path = "actix-web-actors" }
actix-cors = { path = "actix-cors" }
actix-identity = { path = "actix-identity" }
actix-session = { path = "actix-session" }
actix-files = { path = "actix-files" }
actix-multipart = { path = "actix-multipart" }

View File

@ -19,5 +19,5 @@ path = "src/lib.rs"
[dependencies]
actix-web = "2.0.0-alpha.1"
actix-service = "1.0.0-alpha.1"
derive_more = "0.15.0"
derive_more = "0.99.2"
futures = "0.3.1"

View File

@ -24,7 +24,7 @@ actix-service = "1.0.0-alpha.1"
bitflags = "1"
bytes = "0.4"
futures = "0.3.1"
derive_more = "0.15.0"
derive_more = "0.99.2"
log = "0.4"
mime = "0.3"
mime_guess = "2.0.1"

View File

@ -59,7 +59,7 @@ bitflags = "1.0"
bytes = "0.4"
copyless = "0.1.4"
chrono = "0.4.6"
derive_more = "0.15.0"
derive_more = "0.99.2"
either = "1.5.2"
encoding_rs = "0.8"
futures = "0.3.1"

View File

@ -22,7 +22,7 @@ actix-web = { version = "2.0.0-alpha.1", default-features = false }
actix-service = "1.0.0-alpha.1"
actix-utils = "0.5.0-alpha.1"
bytes = "0.4"
derive_more = "0.15.0"
derive_more = "0.99.2"
httparse = "1.3"
futures = "0.3.1"
log = "0.4"

View File

@ -27,7 +27,7 @@ cookie-session = ["actix-web/secure-cookies"]
actix-web = "2.0.0-alpha.1"
actix-service = "1.0.0-alpha.1"
bytes = "0.4"
derive_more = "0.15.0"
derive_more = "0.99.2"
futures = "0.3.1"
hashbrown = "0.6.3"
serde = "1.0"

View File

@ -12,9 +12,9 @@ workspace = ".."
proc-macro = true
[dependencies]
quote = "1"
syn = { version = "1", features = ["full", "parsing"] }
proc-macro2 = "1"
quote = "^1"
syn = { version = "^1", features = ["full", "parsing"] }
proc-macro2 = "^1"
[dev-dependencies]
actix-web = { version = "2.0.0-alpha.1" }

View File

@ -48,7 +48,7 @@ actix-http = "0.3.0-alpha.1"
base64 = "0.10.1"
bytes = "0.4"
derive_more = "0.15.0"
derive_more = "0.99.2"
futures = "0.3.1"
log =" 0.4"
mime = "0.3"