Handle passwords

This commit is contained in:
traxys 2023-08-30 00:04:58 +02:00
parent e6d4f81533
commit 87d99c4875
5 changed files with 102 additions and 1 deletions

View file

@ -5,6 +5,7 @@ authors = ["traxys <quentin@familleboyer.net>"]
edition = "2021"
[dependencies]
argon2 = { version = "0.5.1", features = ["std"] }
axum = { version = "0.6.20", features = ["query"] }
axum-extra = { version = "0.7.7", features = ["cookie"] }
base64 = "0.21.2"
@ -17,6 +18,7 @@ jwt-simple = "0.11.6"
once_cell = "1.18.0"
openidconnect = "3.3.0"
parking_lot = "0.12.1"
secrecy = { version = "0.8.0", features = ["serde"] }
serde = { version = "1.0.183", features = ["derive"] }
serde_urlencoded = "0.7.1"
sqlx = { version = "0.7.1", features = ["runtime-tokio", "postgres", "uuid", "migrate"] }