Skip to content

Commit

Permalink
feat(download-backend)!: make reqwest/rustls the new default
Browse files Browse the repository at this point in the history
  • Loading branch information
rami3l committed May 6, 2024
1 parent 5b3f2cb commit c7f5367
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ fn download_file_(
.map_or(false, |it| it != "0");
let use_rustls = process()
.var_os("RUSTUP_USE_RUSTLS")
.map_or(false, |it| it != "0");
.map_or(true, |it| it != "0");
let (backend, notification) = if use_curl_backend {
(Backend::Curl, Notification::UsingCurl)
} else {
Expand Down

0 comments on commit c7f5367

Please sign in to comment.