zeloxy 0.2.2

A library for creating lightweight, asynchronous, and lag-free proxy connections.
Documentation
mod auth;
mod error;
mod result;
mod rw;

#[cfg(any(feature = "http", feature = "socks4", feature = "socks5"))]
mod connect;

#[cfg(any(feature = "http", feature = "socks4", feature = "socks5"))]
mod proxy;

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

#[cfg(feature = "stream")]
mod stream;

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

pub use auth::*;
pub use error::*;
pub use result::*;

#[cfg(any(feature = "http", feature = "socks4", feature = "socks5"))]
pub use proxy::*;

#[cfg(any(feature = "http", feature = "socks4", feature = "socks5"))]
pub use connect::*;

#[cfg(feature = "chain")]
pub use chain::*;

#[cfg(feature = "stream")]
pub use stream::*;