[package] name = "psocks" version = "0.2.1" edition = "2024" license = "MIT" readme = "README.md" description = "Experimental async SOCKS5 (TCP/UDP) proxy server based on fast-socks5, featuring allowlist access control (drop everything but allowed by user) with JSON/API based on Rocket framework" keywords = ["proxy", "whitelist", "privacy"] categories = ["network-programming"] repository = "https://codeberg.org/postscriptum/psocks" [dependencies] anyhow = "1.0.102" env_logger = "0.11.9" fast-socks5 = "1.0.0" log = "0.4.29" reqwest = "0.13.2" rocket = { version = "0.5.1", features = ["json"] } serde = { version = "1.0.228", features = ["derive"] } structopt = "0.3.26" tokio = { version = "1", features = ["full"] }