We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
reqwest/rustls
1 parent 5b3f2cb commit c7f5367Copy full SHA for c7f5367
src/utils/utils.rs
@@ -226,7 +226,7 @@ fn download_file_(
226
.map_or(false, |it| it != "0");
227
let use_rustls = process()
228
.var_os("RUSTUP_USE_RUSTLS")
229
- .map_or(false, |it| it != "0");
+ .map_or(true, |it| it != "0");
230
let (backend, notification) = if use_curl_backend {
231
(Backend::Curl, Notification::UsingCurl)
232
} else {
0 commit comments