From 76f8106d927300ee82cda0bd18c5eb27b71d6001 Mon Sep 17 00:00:00 2001 From: Josenilson Ferreira da SIlva Date: Thu, 16 Oct 2025 21:03:48 -0300 Subject: [PATCH] disables default feature tokio-rustls --- crates/libtiny_client/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/libtiny_client/Cargo.toml b/crates/libtiny_client/Cargo.toml index 960d752e..3ad68c27 100644 --- a/crates/libtiny_client/Cargo.toml +++ b/crates/libtiny_client/Cargo.toml @@ -22,5 +22,5 @@ rustls-native-certs = { version = "0.6", optional = true } rustls-pemfile = { version = "1.0.3", optional = true } tokio = { version = "1.17", default-features = false, features = ["net", "rt", "io-util", "macros"] } tokio-native-tls = { version = "0.3", optional = true } -tokio-rustls = { version = "0.24", optional = true } +tokio-rustls = { version = ">=0.24", optional = true, default-features = false, features = ["ring", "logging", "tls12"] } tokio-stream = { version = "0.1" }