From c6ef2031fa0a90d60394514f0ac6f07895dbf25e Mon Sep 17 00:00:00 2001 From: hello <79403759+cfdworld@users.noreply.github.com> Date: Tue, 27 Jan 2026 13:25:40 +0800 Subject: [PATCH] Update Cargo.toml for client to add support for tls1.2 when use wss client add support for tls1.2 when use wss --- vnt/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vnt/Cargo.toml b/vnt/Cargo.toml index 96b8efc..44d0ba1 100644 --- a/vnt/Cargo.toml +++ b/vnt/Cargo.toml @@ -46,7 +46,7 @@ zstd = { version = "0.13.1", optional = true } fnv = "1.0.7" igd = { version = "0.12.1", optional = true } tokio-tungstenite = { version = "0.23.1", optional = true } -rustls = { version = "0.23.0", features = ["ring"], default-features = false, optional = true } +rustls = { version = "0.23.0", features = ["ring", "tls12"], default-features = false, optional = true } network-interface = "2.0.0"