From fd253cf1ab5f3af08e2e6133e0d5ab1344e8097f Mon Sep 17 00:00:00 2001 From: Bryan Burgers Date: Fri, 29 May 2020 11:13:03 -0500 Subject: [PATCH] Remove webpki-tokio from hyper-rustls (#935) `reqwest` doesn't actually care how hyper-rustls gets its root certs. By not specifying any feature for hyper-rustls, `reqwest` is able to work with `rusoto_core` and others better. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index a782eda..5077153 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", default-features = false, features = ["webpki-tokio"], optional = true } +hyper-rustls = { version = "0.20", default-features = false, optional = true } rustls = { version = "0.17", features = ["dangerous_configuration"], optional = true } tokio-rustls = { version = "0.13", optional = true } webpki-roots = { version = "0.19", optional = true }