From 71368104e360edfdba78fb7b8dd23b8274f19c57 Mon Sep 17 00:00:00 2001 From: Yevhenii Babichenko Date: Thu, 26 Mar 2020 18:06:01 +0200 Subject: [PATCH] remove dependency on rustls-native-certs (#862) --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index b55a2e7..42273a4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -95,7 +95,7 @@ native-tls-crate = { version = "0.2", optional = true, package = "native-tls" } tokio-tls = { version = "0.3.0", optional = true } # rustls-tls -hyper-rustls = { version = "0.20", optional = true } +hyper-rustls = { version = "0.20", default-features = false, features = ["webpki-tokio"], optional = true } rustls = { version = "0.17", features = ["dangerous_configuration"], optional = true } tokio-rustls = { version = "0.13", optional = true } webpki-roots = { version = "0.18", optional = true }