[package]
edition = "2021"
name = "transparent_proxy"
version = "0.4.0"
description = "A proxy server to run in front of password-protected socks5 servers to be able to connect to the proxy without password using clients which does not support password auth"
readme = "README.md"
license = "GPL-2.0"
repository = "https://github.com/NikosEfthias/transparent_proxy"
[dependencies.base64]
version = "0.13.1"
optional = true
[dependencies.fastrand]
version = "1.8.0"
[dependencies.structopt]
version = "0.3.26"
[dependencies.tap]
version = "1.0.1"
[dependencies.tokio]
version = "1.22.0"
features = [
"rt",
"macros",
"net",
"rt-multi-thread",
"io-util",
]
[features]
default = [
"http",
"socks5",
]
http = ["base64"]
socks5 = []