1
0
mirror of https://github.com/fafhrd91/actix-net synced 2025-06-28 19:10:35 +02:00

disable rustls

This commit is contained in:
Nikolay Kim
2019-11-27 21:03:26 +06:00
parent af72005159
commit a02064592b
3 changed files with 8 additions and 8 deletions

View File

@ -14,16 +14,16 @@ name = "actix_server_config"
path = "src/lib.rs"
[package.metadata.docs.rs]
features = ["openssl", "rustls"]
features = ["openssl"] #, "rustls"]
[features]
default = []
openssl = ["tokio-openssl"]
rustls = ["tokio-rustls"]
# rustls = ["tokio-rustls"]
[dependencies]
actix-codec = "0.2.0-alpha.1"
tokio-net = { version = "=0.2.0-alpha.6", features = ["tcp", "uds"] }
tokio-openssl = { version = "0.4.0-alpha.6", optional = true }
#tokio-rustls = { version = "0.12.0-alpha.8", optional = true }
tokio-rustls = { git = "https://github.com/quininer/tokio-rustls.git", branch = "tokio-0.2", optional = true }
# tokio-rustls = { version = "0.12.0-alpha.8", optional = true }
# tokio-rustls = { git = "https://github.com/quininer/tokio-rustls.git", branch = "tokio-0.2", optional = true }