From df272e9958da28c420568c34ce61fcfacdfcfd37 Mon Sep 17 00:00:00 2001 From: Selyatin <50295732+Selyatin@users.noreply.github.com> Date: Tue, 20 Dec 2022 19:00:12 +0200 Subject: [PATCH] Add Vendored Feature (#125) --- 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..513ec30 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] +vendored = ["native-tls/vendored"] + [dev-dependencies] tokio = { version = "1.0", features = ["macros", "rt", "rt-multi-thread", "io-util", "net"] } tokio-util = { version = "0.6.0", features = ["full"] }