From de5bd4e536bdbd6aa3621c97a961c3c926043d1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Fri, 28 Apr 2023 05:39:42 +0200 Subject: [PATCH] build: define features for 'hyper' crate (#18882) Fixes the "publish" CI step. Somehow neither `cargo build` nor `cargo clippy` don't complain about it. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index eec64e1ce8..ebc21ff352 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -98,7 +98,7 @@ futures = "0.3.21" hex = "0.4" http = "0.2.9" httparse = "1.8.0" -hyper = "0.14.26" +hyper = { version = "0.14.26", features = ["runtime", "http1"] } indexmap = { version = "1.9.2", features = ["serde"] } libc = "0.2.126" log = "=0.4.17"