Files
smartvpn/rust/Cargo.toml

34 lines
738 B
TOML
Raw Normal View History

2026-02-27 10:18:23 +00:00
[package]
name = "smartvpn_daemon"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "smartvpn_daemon"
path = "src/main.rs"
[dependencies]
tokio = { version = "1", features = ["full"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
clap = { version = "4", features = ["derive"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
anyhow = "1"
thiserror = "2"
tokio-tungstenite = { version = "0.26", features = ["rustls-tls-webpki-roots"] }
snow = "0.9"
chacha20poly1305 = "0.10"
rand = "0.8"
base64 = "0.22"
tun = { version = "0.7", features = ["async"] }
bytes = "1"
tokio-util = "0.7"
futures-util = "0.3"
mimalloc = "0.1"
[profile.release]
opt-level = 3
lto = true
strip = true