proxie 0.1.1

Library for making requests through HTTP or SOCKS proxy
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod proxy;
mod error;
mod target;

#[cfg(feature = "enable_sync")]
pub mod sync;

#[cfg(feature = "enable_async_std")]
pub mod async_std;

#[cfg(feature = "enable_tokio")]
pub mod tokio;
mod utils;
mod prelude;

pub use proxy::{Auth, Proxy, HTTPProxy, SOCKS5Proxy};