Files
kumomta/crates/proxy-server/Cargo.toml
T
Wez Furlong d843579d1e refactor: control some dep versions via workspace Cargo.toml
This makes it easier to upgrade the version holistically later.
2023-08-17 10:49:25 -07:00

16 lines
410 B
TOML

[package]
name = "proxy-server"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0"
clap = {version="4.1", features=["derive"]}
env_logger = "0.10"
libc = "0.2"
log = "0.4"
socksv5 = {version="0.3", default-features=false, features=["tokio"]}
tokio = {workspace=true, features=["full", "tracing"]}