From a13f0f63b097399da4f91e63f7b526c770331fe2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E5=AE=87=E9=80=B8?= Date: Sun, 3 Mar 2024 00:54:59 +0800 Subject: [PATCH] feat(dep): upgrade rustls to 0.23 --- compio-tls/Cargo.toml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/compio-tls/Cargo.toml b/compio-tls/Cargo.toml index b27d648f..055d5c20 100644 --- a/compio-tls/Cargo.toml +++ b/compio-tls/Cargo.toml @@ -19,13 +19,18 @@ compio-buf = { workspace = true } compio-io = { workspace = true, features = ["compat"] } native-tls = { version = "0.2.11", optional = true } -rustls = { version = "0.22.1", optional = true } +rustls = { version = "0.23.1", default-features = false, optional = true, features = [ + "logging", + "std", + "tls12", +] } [dev-dependencies] compio-net = { workspace = true } compio-runtime = { workspace = true } compio-macros = { workspace = true } +rustls = { version = "0.23.1", default-features = false, features = ["ring"] } rustls-native-certs = "0.7.0" [features]