feat: add scafolding

Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
2025-03-27 11:07:54 +00:00
parent 0e141eebae
commit 4f0f8ddbe1
15 changed files with 4648 additions and 100 deletions

27
Cargo.toml Normal file
View File

@@ -0,0 +1,27 @@
[package]
name = "veil"
version = "0.1.0"
edition = "2024"
description = "A lightweight multi-user WireGuard controller with OIDC support"
authors = [
"Nikolaos Karaolidis <nick@karaolidis.com>",
]
[profile.release]
panic = 'abort'
strip = true
lto = true
codegen-units = 1
[dependencies]
axum = "0.8.1"
clap = { version = "4.5.32", features = ["derive"] }
log = "0.4.27"
log4rs = "1.3.0"
openidconnect = "4.0.0"
postgres = "0.19.10"
serde = "1.0.219"
serde_derive = "1.0.219"
serde_yaml = "0.9.34"
sqlx = { version = "0.8.3", features = ["postgres", "runtime-tokio"] }
tokio = { version = "1.44.1", features = ["rt-multi-thread"] }