1extern crate reqwest; 2 3pub use reqwest::Error; 4 5#[cfg(not(feature = "blocking"))] 6pub use ::reqwest::*; 7 8#[cfg(feature = "blocking")] 9pub use reqwest::blocking::*;