feat: implement session-based authentication and core API handlers for user management

This commit is contained in:
2025-12-19 16:21:12 +05:30
parent b9fbbbbbd6
commit 4890cfb541
10 changed files with 1019 additions and 5 deletions

View File

@@ -22,11 +22,15 @@ serde = { version = "1", features = ["derive"] }
serde_yaml = "0.9"
# Auth
axum-login = "0.17"
tower-sessions = "0.14"
argon2 = "0.5"
rand = "0.8"
async-trait = "0.1"
# Time
chrono = { version = "0.4", features = ["serde"] }
time = "0.3"
# Logging
tracing = "0.1"