From 21cb416f41c2f38cf016e2395b14ac13fb433e14 Mon Sep 17 00:00:00 2001 From: Maxime Augier Date: Mon, 25 Nov 2024 13:50:25 +0100 Subject: [PATCH] Enable tungstenite by default --- Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 554d796..f9eee77 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,3 +22,6 @@ thiserror = "1.0.63" tracing = "0.1.40" tungstenite = { version = "0.23.0", optional = true, features = ["rustls-tls-native-roots"] } ureq = { version = "2.10.0", features = ["json"] } + +[features] +default = ["tungstenite"]