From fe4d631c9712c6126f4891c00169534346a188d2 Mon Sep 17 00:00:00 2001 From: Christophe Vidal Date: Wed, 17 Jun 2020 15:43:07 +0200 Subject: [PATCH] Allow statically linking Solving https://github.com/snapview/tungstenite-rs/issues/118 by using `features= ["tls-vendored"]` in the toml file --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index b72ee79..e6c5a1d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,6 +15,7 @@ edition = "2018" [features] default = ["tls"] tls = ["native-tls"] +tls-vendored = ["native-tls", "native-tls/vendored"] [dependencies] base64 = "0.12.0"