re-export identity and cors middleware

This commit is contained in:
Nikolay Kim 2019-06-15 21:47:06 +06:00
parent cd323f2ff1
commit d7ec241fd0
4 changed files with 26 additions and 17 deletions

View file

@ -43,7 +43,7 @@ members = [
]
[features]
default = ["brotli", "flate2-zlib", "client", "fail"]
default = ["brotli", "flate2-zlib", "client", "fail", "depracated"]
# http client
client = ["awc"]
@ -68,6 +68,9 @@ ssl = ["openssl", "actix-server/ssl", "awc/ssl"]
# rustls
rust-tls = ["rustls", "actix-server/rust-tls"]
# deprecated middlewares
depracated = ["actix-cors", "actix-identity"]
[dependencies]
actix-codec = "0.1.2"
actix-service = "0.4.0"
@ -81,13 +84,15 @@ actix-server-config = "0.1.1"
actix-threadpool = "0.1.1"
awc = { version = "0.2.1", optional = true }
# actix-cors = "0.1."{ path="./actix-cors" }
# deprecated middlewares
actix-cors = { version = "0.1.0", optional = true }
actix-identity = { version = "0.1.0", optional = true }
bytes = "0.4"
derive_more = "0.14"
encoding = "0.2"
futures = "0.1.25"
hashbrown = "0.3.0"
hashbrown = "0.3.1"
log = "0.4"
mime = "0.3"
net2 = "0.2.33"
@ -104,10 +109,9 @@ openssl = { version="0.10", optional = true }
rustls = { version = "0.15", optional = true }
[dev-dependencies]
actix = { version = "0.8.3" }
actix-http = { version = "0.2.3", features=["ssl", "brotli", "flate2-zlib"] }
actix-http-test = { version = "0.2.0", features=["ssl"] }
actix-files = "0.1.1"
actix = { version = "0.8.3" }
rand = "0.6"
env_logger = "0.6"
serde_derive = "1.0"
@ -121,7 +125,7 @@ opt-level = 3
codegen-units = 1
[patch.crates-io]
actix-web = { path = "." }
# actix-web = { path = "." }
actix-http = { path = "actix-http" }
actix-http-test = { path = "test-server" }
actix-web-codegen = { path = "actix-web-codegen" }