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.
This commit is contained in:
Bryan Burgers
2020-05-29 11:13:03 -05:00
committed by GitHub
parent 6c7190bb4f
commit fd253cf1ab

View File

@@ -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 }