Alot of user management

This commit is contained in:
2025-11-28 23:28:58 +01:00
parent 504b5b2b27
commit d7374504f8
10 changed files with 190 additions and 16 deletions

View File

@@ -5,9 +5,15 @@ edition = "2024"
[dependencies]
anyhow = "1.0.100"
argon2 = "0.5.3"
axum = "0.8.7"
serde = "1.0.228"
password-hash = "0.5.0"
rand_core = { version = "0.6", features = ["getrandom"] }
serde = { version = "1.0.228", features = ["derive", "serde_derive"] }
serde_json = "1.0.145"
tokio = { version = "1.48.0", features = ["macros", "rt-multi-thread"] }
tower = { version = "0.5.2", features = ["tokio", "tracing"] }
tower-http = { version = "0.6.7", features = ["cors"] }
tracing = { version = "0.1.43", features = ["max_level_debug"] }
tracing-subscriber = "0.3.22"
validator = { version = "0.20.0", features = ["derive"] }