first commit

This commit is contained in:
2026-03-14 20:50:05 -04:00
commit 0c9af957fe
25 changed files with 1122 additions and 0 deletions

32
auth-api/Cargo.toml Normal file
View File

@@ -0,0 +1,32 @@
[package]
name = "auth-api"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "auth-api"
path = "src/main.rs"
[dependencies]
shared = { path = "../shared" }
tokio = { workspace = true }
axum = { workspace = true }
axum-extra = { workspace = true }
tower-http = { workspace = true }
sqlx = { workspace = true }
uuid = { workspace = true }
chrono = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
jsonwebtoken = { workspace = true }
argon2 = { workspace = true }
rand = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
anyhow = { workspace = true }
thiserror = { workspace = true }
validator = { workspace = true }
dotenvy = { workspace = true }
tower = { workspace = true }
sha2 = "0.10"
time = { version = "0.3", features = ["serde-human-readable"] }