Authentication

This commit is contained in:
Bad Manners 2025-04-07 23:55:35 -03:00
parent 2722c7d40a
commit a5e3fb2850
19 changed files with 723 additions and 98 deletions

View file

@ -12,10 +12,12 @@ members = [".", "migration"]
[dependencies]
askama = "0.13.0"
async-trait = "0.1.88"
axum = { version = "0.8.3", features = ["multipart", "macros"] }
axum-extra = { version = "0.10.1", features = ["form"] }
axum-login = "0.17.0"
chrono = "0.4.40"
clap = "4.5.35"
futures-util = "0.3.31"
image = "0.25.6"
itertools = "0.14.0"
@ -29,6 +31,13 @@ sea-orm = { version = "1.1.8", features = [
"with-chrono",
] }
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
thiserror = "2.0.12"
time = "0.3.41"
tokio = { version = "1.44.1", features = ["full"] }
tower-http = { version = "0.6.2", features = ["fs"] }
tower-sessions = "0.14.0"
[profile.release]
strip = true
lto = true