aioduct 0.2.0

Async-native HTTP client built directly on hyper 1.x — no hyper-util, no legacy
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod chain;
mod config;
mod no_proxy;
mod settings;

pub use chain::ProxyChain;
pub use config::ProxyConfig;
pub use no_proxy::NoProxy;
pub use settings::{CustomProxy, ProxySettings};

pub(crate) use config::ProxyAuth;
#[cfg(any(not(target_arch = "wasm32"), test))]
pub(crate) use config::ProxyScheme;

#[cfg(test)]
mod tests;