From ecddf97e7225e16a0fcc404cfb54740ecac360f4 Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Mon, 25 Mar 2024 14:34:19 +0100 Subject: [PATCH] Upgrade tokio-rustls to 0.26 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index e11c8c9..a8e975d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,7 @@ rustls-native-certs = { version = "0.7", optional = true } rustls-pki-types = { version = "1", optional = true } serde = { version = "1.0", features = ["derive"] } tokio = { version = "1.0", features = ["io-util", "net", "time"] } -tokio-rustls = { version = "0.25", optional = true } +tokio-rustls = { version = "0.26", optional = true, default-features = false, features = ["logging", "ring", "tls12"] } tracing = "0.1.29" [dev-dependencies]