From 2518f2655cd3bb0d0f2ac17cacb2abdecd076a27 Mon Sep 17 00:00:00 2001 From: "flamingo[bot]" <277372822+flamingo[bot]@users.noreply.github.com> Date: Mon, 14 Sep 2026 05:06:05 +0000 Subject: [PATCH] fix(NATSRS-010-2): async-nats/Cargo.toml enables both ring and aws-lc-rs unconditionally by default --- async-nats/Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/async-nats/Cargo.toml b/async-nats/Cargo.toml index 9d93f0fc0..cd8fb9e07 100644 --- a/async-nats/Cargo.toml +++ b/async-nats/Cargo.toml @@ -60,7 +60,7 @@ jsonschema = "0.17.1" num = "0.4.1" [features] -default = ["server_2_10", "server_2_11", "server_2_12", "ring"] +default = ["server_2_10", "server_2_11", "server_2_12"] # Enables Service API for the client. service = [] websockets = ["dep:tokio-websockets"] @@ -91,3 +91,4 @@ lto = true # We can't use `all-features` because the `fips` doesn't compile in restricted docs.rs environment. features = ["server_2_10", "service", "experimental", "ring", "aws-lc-rs"] rustdoc-args = ["--cfg", "docsrs"] +