From 218bcbc6315e4dbacca25c202e997535f947d4d3 Mon Sep 17 00:00:00 2001 From: Marnix Kuijs Date: Wed, 30 Dec 2020 16:30:04 +0100 Subject: [PATCH] Alpn feature --- tokio-native-tls/Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tokio-native-tls/Cargo.toml b/tokio-native-tls/Cargo.toml index f61a31a..c82978c 100644 --- a/tokio-native-tls/Cargo.toml +++ b/tokio-native-tls/Cargo.toml @@ -25,6 +25,9 @@ categories = ["asynchronous", "network-programming"] native-tls = "0.2" tokio = "1.0" +[features] +alpn = ["native-tls/alpn"] + [dev-dependencies] tokio = { version = "1.0", features = ["macros", "rt", "rt-multi-thread", "io-util", "net"] } tokio-util = { version = "0.6.0", features = ["full"] }