read-url 0.0.10

Read from a wide variety of URL types
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#[cfg(feature = "async")]
mod asynchronous;
#[cfg(feature = "blocking")]
mod blocking;
mod context;
mod url;
mod zip_url;

#[cfg(feature = "async")]
#[allow(unused_imports)]
pub use asynchronous::*;

#[cfg(feature = "blocking")]
#[allow(unused_imports)]
pub use blocking::*;

#[allow(unused_imports)]
pub use zip_url::*;