feat: user registration

Adds crates and code for user registration, this is EXTREMELY INSECURE AND FOR TESTING ONLY
This commit is contained in:
Radical 2025-04-29 21:54:41 +02:00
parent 26b6601f5b
commit 19bad249d4
3 changed files with 144 additions and 3 deletions

View file

@ -5,10 +5,14 @@ edition = "2024"
[dependencies]
actix-web = "4.10"
serde = { version = "1.0.219", features = ["derive"] }
futures = "0.3"
regex = "1.11"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sqlx = { version = "0.8", features = ["runtime-tokio", "tls-native-tls", "postgres"] }
toml = "0.8"
url = { version = "2.5.4", features = ["serde"] }
url = { version = "2.5", features = ["serde"] }
uuid = { version = "1.16", features = ["v7"] }
[dependencies.tokio]
version = "1.44"