From b4521922a57ae515e1b99577b0a199f203b91a69 Mon Sep 17 00:00:00 2001 From: Paolo Barbolini Date: Tue, 29 Dec 2020 20:17:16 +0100 Subject: [PATCH] Don't enable the hyper http1 feature now that hyper 0.14.2 is out Starting from hyper 0.14.2 http connection types don't require a specific proto feature to be enabled in order to be accessed. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 8fb05b0..bb678c7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ repository = "https://github.com/ctz/hyper-rustls" log = "0.4.4" ct-logs = { version = "^0.8", optional = true } futures-util = "0.3.1" -hyper = { version = "0.14", default-features = false, features = ["client", "http1"] } +hyper = { version = "0.14.2", default-features = false, features = ["client"] } rustls = "0.19" rustls-native-certs = { version = "0.5.0", optional = true } tokio = "1.0"