feat: Added initial scaffold, db schema and entrypoint

This commit is contained in:
2026-06-25 10:15:12 +05:30
parent b9a7bb8319
commit a55fd2e1bd
6 changed files with 3300 additions and 3 deletions

View File

@@ -1,6 +1,21 @@
[package]
name = "bootstrap-auth-server"
version = "0.1.0"
edition = "2026"
edition = "2021"
[dependencies]
aes-gcm = "0.10.3"
age = { version = "0.11.3", features = ["ssh"] }
axum = "0.8.9"
base64 = "0.22.1"
dotenvy = "0.15.7"
ed25519-dalek = "2.2.0"
rand = "0.10.1"
serde = "1.0.228"
serde_json = "1.0.150"
sha2 = "0.11.0"
sqlx = { version = "0.9.0", features = ["runtime-tokio", "sqlite", "tls-rustls"] }
ssh-key = { version = "0.6.7", features = ["ed25519"] }
tokio = { version = "1.52.3", features = ["full"] }
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.23", features = ["env-filter"] }