27 lines
600 B
TOML
27 lines
600 B
TOML
[package]
|
|
name = "ostp-client"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
description = "OSTP Stealth VPN Client"
|
|
|
|
[[bin]]
|
|
name = "ostp-client"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
ostp = { path = "../ostp" }
|
|
ostp-guard = { path = "../ostp-guard" }
|
|
tokio.workspace = true
|
|
anyhow.workspace = true
|
|
tracing.workspace = true
|
|
tracing-subscriber.workspace = true
|
|
clap.workspace = true
|
|
hex.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
dialoguer.workspace = true
|
|
console.workspace = true
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
# Windows-specific deps will go here (wintun, etc.)
|