socks5_impl/
lib.rs

1#![doc = include_str!("../README.md")]
2
3#[cfg(feature = "client")]
4pub mod client;
5pub(crate) mod error;
6pub mod protocol;
7#[cfg(feature = "server")]
8pub mod server;
9
10pub use crate::error::{Error, Result};