psocks/Cargo.toml

23 lines
788 B
TOML

[package]
name = "psocks"
version = "0.5.0"
edition = "2024"
license = "MIT"
readme = "README.md"
description = "Filtering asynchronous SOCKS5 (TCP/UDP) proxy server based on fast-socks5, featuring allowlist-based access control that drops everything except what is allowed by the user. Includes 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"] }
toml = "1.1.0"
url = "2.5.8"