From 219f7ad8058e9aa59a0b9c75b02e90a1e2e9b535 Mon Sep 17 00:00:00 2001 From: MrCroxx Date: Thu, 23 Nov 2023 13:47:09 +0800 Subject: [PATCH] chore: enable tcp and client feature for hyper 0.14 Signed-off-by: MrCroxx --- src/object_store/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/object_store/Cargo.toml b/src/object_store/Cargo.toml index a3f77e101bd4f..0ba84c74cafad 100644 --- a/src/object_store/Cargo.toml +++ b/src/object_store/Cargo.toml @@ -22,7 +22,7 @@ crc32fast = "1.3.2" either = "1" fail = "0.5" futures = { version = "0.3", default-features = false, features = ["alloc"] } -hyper = "0.14" +hyper = { version = "0.14", features = ["tcp", "client"] } hyper-rustls = { version = "0.24.2", features = ["webpki-roots"] } hyper-tls = "0.5.0" itertools = "0.12"