feat: Update Cargo.toml to add support for tls1.2 when use wss (#1917)

This commit is contained in:
hello
2026-02-20 18:01:21 +08:00
committed by GitHub
parent f737708f45
commit 73291a3a1c
2 changed files with 1 additions and 4 deletions
-3
View File
@@ -35,9 +35,6 @@ serde_json = "1"
easytier = { path = "../../easytier" } easytier = { path = "../../easytier" }
tokio = { version = "1", features = ["full"] } tokio = { version = "1", features = ["full"] }
rustls = { version = "0.23.0", features = [
"ring",
] }
anyhow = "1.0" anyhow = "1.0"
chrono = { version = "0.4.37", features = ["serde"] } chrono = { version = "0.4.37", features = ["serde"] }
+1 -1
View File
@@ -72,7 +72,7 @@ quinn = { version = "0.11.8", optional = true, features = ["ring"] }
quinn-plaintext = { version = "0.3.0", optional = true } quinn-plaintext = { version = "0.3.0", optional = true }
rustls = { version = "0.23.0", features = [ rustls = { version = "0.23.0", features = [
"ring", "ring","tls12"
], default-features = false, optional = true } ], default-features = false, optional = true }
rcgen = { version = "0.12.1", optional = true } rcgen = { version = "0.12.1", optional = true }