1
0
mirror of https://github.com/actix/examples synced 2024-11-23 22:41:07 +01:00

replace deprecated feature "alpn" with "ssl" (#56)

In actix-web's Cargo.toml, feature "alpn" is marked as deprecated,
with the suggestion to use "ssl", instead.
This commit is contained in:
Jan Niehusmann 2018-10-14 19:30:59 +02:00 committed by Douman
parent 30623edfe1
commit 0a2a356e7a

View File

@ -12,4 +12,4 @@ path = "src/main.rs"
env_logger = "0.5"
openssl = { version="0.10" }
actix = "0.7"
actix-web = { version = "0.7", features=["alpn"] }
actix-web = { version = "0.7", features=["ssl"] }