feat: web frontend; middleware; serde (WIP?)

This commit is contained in:
2025-11-30 09:41:37 +08:00
parent be35040e26
commit 531ac029af
45 changed files with 6806 additions and 82 deletions

View File

@@ -6,9 +6,10 @@ edition = "2024"
[dependencies]
axum = "0.8"
tokio = { version = "1", features = ["full"] }
tower-http = { version = "0.6", features = ["compression-full"] }
tower-http = { version = "0.6", features = ["compression-full", "fs"] }
hyper = { version = "1", features = ["full"] }
serde = { version = "1", features = ["derive"] }
serde_with = { version = "3.16", features = ["hashbrown_0_16", "json"] }
serde_json = "1"
base64 = "0.22"
aes = "0.8"
@@ -21,4 +22,11 @@ thiserror = "2"
http-body-util = "0.1.1"
chrono = { version = "0.4", features = ["clock"] }
reqwest = { version = "0.12", features = ["json", "rustls-tls", "gzip"], default-features = false }
hashbrown = { version = "0.16", features = ["serde"] }
hashbrown = { version = "0.16", features = ["serde"] }
concat-idents = "1.1"
indoc = "2.0"
sqlx = { version = "0.8", features = ["runtime-tokio", "sqlite"] }
rust-embed = "8.0"
mime_guess = "2.0"
jsonwebtoken = "9"
bcrypt = "0.17"