From 97dc8603b5c13fb840d28d2411346f949dc25c38 Mon Sep 17 00:00:00 2001 From: katelyn martin Date: Tue, 5 Aug 2025 00:00:00 +0000 Subject: [PATCH] fix: rustls feature is now called `log` see: https://github.com/rustls/rustls/blob/main/rustls/Cargo.toml#L23 this feature was renamed in https://github.com/rustls/rustls/commit/192ab85a5c2c865b9cca9b2a8c987de33a102667, via https://github.com/rustls/rustls/pull/2549. this updates the `logging` feature so that it now points to the new name of this feature. Signed-off-by: katelyn martin --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index f50a564d..1127678f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,7 +22,7 @@ aws_lc_rs = ["rustls/aws_lc_rs"] aws-lc-rs = ["aws_lc_rs"] # Alias because Cargo features commonly use `-` early-data = [] fips = ["rustls/fips"] -logging = ["rustls/logging"] +logging = ["rustls/log"] ring = ["rustls/ring"] tls12 = ["rustls/tls12"]