1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
//! # async-proxy //! //! The crate `async-proxy` provides a fast and flexible, //! as well as asyncronous implementation of proxy clients //! and proxy-related utilities. /// Module responsible for functionality /// related to proxy clients interfaces /// (eg. common definitions and traits) pub mod proxy; /// Module responsible for client implementations /// of known and most-used proxifications /// protocols, such as Socks4/5, HTTP(s) /// proxies pub mod clients; /// Module contains types and definitions /// that are widely and generally used /// over the library pub mod general;