From a16eab637ceeb883f96b211fe010a60e95906f7f Mon Sep 17 00:00:00 2001 From: regginator Date: Wed, 14 Jun 2023 13:30:34 -0500 Subject: [PATCH] Add `rustls-tls-native-roots` feature to `tokio-tungstenite` crate (`liblune`) --- packages/lib/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/lib/Cargo.toml b/packages/lib/Cargo.toml index 4b3098c..c85eb4b 100644 --- a/packages/lib/Cargo.toml +++ b/packages/lib/Cargo.toml @@ -52,7 +52,7 @@ async-compression = { version = "0.4", features = [ ] } hyper = { version = "0.14", features = ["full"] } hyper-tungstenite = { version = "0.10" } -tokio-tungstenite = { version = "0.19" } +tokio-tungstenite = { version = "0.19", features = ["rustls-tls-native-roots"] } [dev-dependencies] anyhow = "1.0"