fast-down 4.0.3

Download everything fast
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![doc = include_str!("../README.md")]

mod proxy;
mod url_info;

pub use fast_pull::*;
pub use proxy::*;
pub use url_info::*;

#[cfg(feature = "http")]
pub mod http;
#[cfg(feature = "reqwest")]
pub mod reqwest;
mod utils;
#[allow(unused_imports)]
pub use utils::*;