From 0a2a356e7ac2971ef26da27e42da275c1c65a394 Mon Sep 17 00:00:00 2001 From: Jan Niehusmann Date: Sun, 14 Oct 2018 19:30:59 +0200 Subject: [PATCH] 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. --- tls/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tls/Cargo.toml b/tls/Cargo.toml index 303000ae..dcae3d35 100644 --- a/tls/Cargo.toml +++ b/tls/Cargo.toml @@ -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"] }