Files
ospab.network/Cargo.toml
ospab 7e1c87e70b feat: Windows Setup Wizard (ostp-setup) with Tauri
- Tauri 2.0 based graphical installer
- Access Key parsing with AES-256-GCM encryption
- Windows Service installation via sc.exe
- WinTUN driver extraction from embedded resources
- System requirements checking (admin, AES-NI, OS version)
- Modern dark UI with step-by-step wizard flow
- Country/region selection for SNI mimicry
2026-01-01 21:49:37 +03:00

60 lines
2.2 KiB
TOML

[workspace]
resolver = "2"
members = ["ostp", "oncp", "osn", "osds", "ostp-server", "ostp-client", "ostp-guard", "oncp-master", "ostp-setup"]
[workspace.package]
version = "0.1.0"
edition = "2024"
authors = ["ospab.team"]
license = "Proprietary"
# ============================================================================
# HARDENED RELEASE PROFILE - Anti-Reverse Engineering
# ============================================================================
[profile.release]
lto = true # Link-Time Optimization - merges all code, removes boundaries
codegen-units = 1 # Single codegen unit - better optimization, harder to analyze
panic = "abort" # No unwinding info - smaller binary, no stack traces
strip = "symbols" # Remove ALL symbols - no function names in binary
opt-level = 3 # Maximum optimization
debug = false # No debug info
debug-assertions = false # No debug assertions
overflow-checks = false # No overflow checks (performance + less obvious control flow)
incremental = false # Reproducible builds
# Distribution build - even more aggressive
[profile.dist]
inherits = "release"
lto = "fat" # Full LTO across all crates
strip = "debuginfo" # Alternative stripping
[workspace.dependencies]
tokio = { version = "1.40", features = ["full"] }
ring = "0.17"
chacha20poly1305 = "0.10"
x25519-dalek = { version = "2.0", features = ["static_secrets"] }
bytes = "1.7"
rusqlite = { version = "0.32", features = ["bundled"] }
anyhow = "1.0"
thiserror = "2.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
uuid = { version = "1.10", features = ["v4", "serde"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
hmac = "0.12"
sha2 = "0.10"
rand = "0.8"
chrono = { version = "0.4", features = ["serde"] }
clap = { version = "4.5", features = ["derive", "env"] }
hex = "0.4"
dialoguer = "0.11"
console = "0.15"
axum = "0.7"
tower = "0.4"
tower-http = { version = "0.5", features = ["cors", "trace"] }
hyper = { version = "1.0", features = ["full"] }
base64 = "0.21"
qrcode = "0.14"
image = { version = "0.24", default-features = false, features = ["png"] }