mirror of
https://codeberg.org/YGGverse/psocks.git
synced 2026-03-31 16:35:28 +00:00
21 lines
724 B
TOML
21 lines
724 B
TOML
[package]
|
|
name = "psocks"
|
|
version = "0.3.0"
|
|
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"] }
|