From 57d2b84e5d950ad7e303706c9eac4ce39a41d38e Mon Sep 17 00:00:00 2001 From: Luca Palmieri <20745048+LukeMathWalker@users.noreply.github.com> Date: Fri, 17 Nov 2023 09:52:03 +0100 Subject: [PATCH] `server-auto` should imply `server` --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index e004994..cb92f21 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -54,7 +54,7 @@ client = ["hyper/client"] client-legacy = ["client"] server = ["hyper/server"] -server-auto = ["hyper/server", "http1", "http2"] +server-auto = ["server", "http1", "http2"] http1 = ["hyper/http1"] http2 = ["hyper/http2"]