1#![doc = include_str!("../README.md")] 2 3mod url_info; 4 5pub use fast_pull::*; 6pub use url_info::*; 7 8#[cfg(feature = "http")] 9pub mod http; 10#[cfg(feature = "reqwest")] 11pub mod reqwest; 12#[cfg(feature = "utils")] 13pub mod utils;