start, reverse guard, cli-frontend for server and client

This commit is contained in:
2026-01-01 18:54:36 +03:00
commit 5fbb32d243
30 changed files with 4700 additions and 0 deletions

23
ostp-server/Cargo.toml Normal file
View File

@@ -0,0 +1,23 @@
[package]
name = "ostp-server"
version.workspace = true
edition.workspace = true
description = "OSTP Stealth VPN Server"
[[bin]]
name = "ostp-server"
path = "src/main.rs"
[dependencies]
ostp = { path = "../ostp" }
oncp = { path = "../oncp" }
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
rand.workspace = true