From f1ddfb1d81f91ffaee9673715a375c5d7a2ce023 Mon Sep 17 00:00:00 2001 From: Luca Palmieri <20745048+LukeMathWalker@users.noreply.github.com> Date: Fri, 17 Nov 2023 12:50:26 +0100 Subject: [PATCH] `server-auto` should imply `server` (#57) --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 6267395..eadd79d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -57,7 +57,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"]