We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7422156 commit 548dc63Copy full SHA for 548dc63
1 file changed
src/download/mod.rs
@@ -541,10 +541,11 @@ mod curl {
541
542
#[cfg(any(feature = "reqwest-rustls-tls", feature = "reqwest-native-tls"))]
543
mod reqwest_be {
544
- use std::io;
+ #[cfg(feature = "reqwest-rustls-tls")]
545
+ use std::sync::Arc;
546
- use std::sync::{Arc, OnceLock};
547
- use std::time::Duration;
+ use std::sync::OnceLock;
548
+ use std::{io, time::Duration};
549
550
#[cfg(all(feature = "reqwest-rustls-tls", not(target_os = "android")))]
551
use crate::anchors::RUSTUP_TRUST_ANCHORS;
0 commit comments