1 2 3 4 5 6 7 8 9 10
#[cfg(test)] pub(crate) mod helper { use once_cell::sync::Lazy; pub(crate) static RUSTLS: Lazy<()> = Lazy::new(|| { rustls::crypto::aws_lc_rs::default_provider() .install_default() .expect("Failed to install rustls crypto provider"); }); }