Files
bootstrap-auth-server/Cargo.toml

22 lines
587 B
TOML

[package]
name = "bootstrap-auth-server"
version = "0.1.0"
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.8"
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"] }