From 96277c5688e45d1513578f61e8b02a654c1a273e Mon Sep 17 00:00:00 2001 From: Josh Matthews Date: Fri, 28 Mar 2025 08:04:02 -0400 Subject: [PATCH] net: Add missing feature required for unit tests. (#36193) Signed-off-by: Josh Matthews --- components/net/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/net/Cargo.toml b/components/net/Cargo.toml index 35ec06632e5..d28b4e65ffe 100644 --- a/components/net/Cargo.toml +++ b/components/net/Cargo.toml @@ -78,7 +78,7 @@ flate2 = "1" futures = { version = "0.3", features = ["compat"] } hyper = { workspace = true, features = ["full"] } hyper-util = { workspace = true, features = ["server-graceful"] } -rustls = { workspace = true } +rustls = { workspace = true, features = ["aws-lc-rs"] } [[test]] name = "main"