diff --git a/Cargo.lock b/Cargo.lock index b8f14547..aeeae558 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3172,6 +3172,7 @@ dependencies = [ "pin-project-lite", "quinn", "rustls", + "rustls-native-certs", "rustls-pemfile", "serde", "serde_json", @@ -3276,6 +3277,18 @@ dependencies = [ "sct", ] +[[package]] +name = "rustls-native-certs" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a9aace74cb666635c918e9c12bc0d348266037aa8eb599b5cba565709a8dff00" +dependencies = [ + "openssl-probe", + "rustls-pemfile", + "schannel", + "security-framework", +] + [[package]] name = "rustls-pemfile" version = "1.0.4" diff --git a/crates/binstalk-downloader/Cargo.toml b/crates/binstalk-downloader/Cargo.toml index dbc8c0c4..e86bc561 100644 --- a/crates/binstalk-downloader/Cargo.toml +++ b/crates/binstalk-downloader/Cargo.toml @@ -66,6 +66,8 @@ rustls = [ "__tls", "reqwest/rustls-tls", + "reqwest/rustls-tls-webpki-roots", + "reqwest/rustls-tls-native-roots", # Enable the following features only if hickory-resolver is enabled. "hickory-resolver?/dns-over-rustls",