From 9c80cfa9f6b7a61453448e134e840dd066934bd9 Mon Sep 17 00:00:00 2001 From: Marco Neumann Date: Mon, 4 Mar 2024 11:16:46 +0100 Subject: [PATCH] chore: use `ring` for crypto --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 0c3abf2..b3cd254 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -31,7 +31,7 @@ lz4 = { version = "1.23", optional = true } parking_lot = "0.12" pin-project-lite = "0.2" rand = "0.8" -rustls = { version = "0.23", optional = true } +rustls = { version = "0.23", optional = true, default-features = false, features = ["logging", "ring", "std", "tls12"] } snap = { version = "1", optional = true } thiserror = "1.0" tokio = { version = "1.19", default-features = false, features = ["io-util", "net", "rt", "sync", "time", "macros"] }