1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-06-26 06:57:43 +02:00

fix tokio-tls dependency #480

This commit is contained in:
Nikolay Kim
2018-08-23 10:10:13 -07:00
parent 1716380f08
commit 810995ade0
3 changed files with 29 additions and 6 deletions

View File

@ -32,7 +32,7 @@ path = "src/lib.rs"
default = ["session", "brotli", "flate2-c"]
# tls
tls = ["native-tls"]
tls = ["native-tls", "tokio-tls"]
# openssl
alpn = ["openssl", "tokio-openssl"]
@ -104,6 +104,7 @@ tokio-reactor = "0.1"
# native-tls
native-tls = { version="0.2", optional = true }
tokio-tls = { version="0.2", optional = true }
# openssl
openssl = { version="0.10", optional = true }