From 7434a6e0bdda0c6322ff6d3762457532b7021f82 Mon Sep 17 00:00:00 2001 From: Luke Parker Date: Wed, 29 Nov 2023 05:45:49 -0500 Subject: [PATCH] Correct optional features --- common/request/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/request/Cargo.toml b/common/request/Cargo.toml index 528aff107..51fb7da4b 100644 --- a/common/request/Cargo.toml +++ b/common/request/Cargo.toml @@ -27,6 +27,6 @@ zeroize = { version = "1", optional = true } base64ct = { version = "1", features = ["alloc"], optional = true } [features] -tls = ["hyper-boring"] +tls = ["tower-service", "hyper-boring"] basic-auth = ["zeroize", "base64ct"] default = ["tls"]