Skip to content

Commit c7f5367

Browse files
committed
feat(download-backend)!: make reqwest/rustls the new default
1 parent 5b3f2cb commit c7f5367

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/utils.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ fn download_file_(
226226
.map_or(false, |it| it != "0");
227227
let use_rustls = process()
228228
.var_os("RUSTUP_USE_RUSTLS")
229-
.map_or(false, |it| it != "0");
229+
.map_or(true, |it| it != "0");
230230
let (backend, notification) = if use_curl_backend {
231231
(Backend::Curl, Notification::UsingCurl)
232232
} else {

0 commit comments

Comments
 (0)