1 2 3 4 5 6 7 8 9 10
//! Functionality to stream and extract packages directly from a [`reqwest::Url`]. #[cfg(not(target_arch = "wasm32"))] pub mod fetch; pub mod full_download; #[cfg(not(target_arch = "wasm32"))] pub mod sparse; pub mod tokio; #[cfg(test)] pub(crate) mod test_server;