From f7c86c439388c29be74161383241787e3f2fa5de Mon Sep 17 00:00:00 2001 From: Oriol Brufau Date: Tue, 8 Jul 2025 01:42:19 +0200 Subject: [PATCH] Use hyper-util with client-legacy feature (#37925) This fixes `./mach clippy -r -p layout`. Testing: Unneeded (no change in behavior) Fixes: #37922 Signed-off-by: Oriol Brufau --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 5a82ce183e3..17f9b05ab1e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -76,7 +76,7 @@ http = "1.3" http-body-util = "0.1" hyper = "1.6" hyper-rustls = { version = "0.27", default-features = false, features = ["http1", "http2", "logging", "tls12", "webpki-tokio"] } -hyper-util = { version = "0.1", features = ["client", "http2", "tokio"] } +hyper-util = { version = "0.1", features = ["client-legacy", "http2", "tokio"] } hyper_serde = { path = "components/hyper_serde" } icu_locid = "1.5.0" icu_segmenter = "1.5.0"