feat: Add attachment management with upload, deletion, serving, and media metadata stripping.
This commit is contained in:
@@ -6,16 +6,19 @@ edition = "2024"
|
||||
[dependencies]
|
||||
anyhow = "1.0.102"
|
||||
askama = "0.15.4"
|
||||
axum = "0.8.8"
|
||||
axum = { version = "0.8.8", features = ["multipart"] }
|
||||
axum-extra = { version = "0.12.5", features = ["cookie"] }
|
||||
base64 = "0.22.1"
|
||||
bcrypt = "0.18.0"
|
||||
chrono = { version = "0.4.44", features = ["serde"] }
|
||||
dotenvy = "0.15.7"
|
||||
image = "0.25.5"
|
||||
lofty = "0.22.1"
|
||||
rand = "0.10.0"
|
||||
serde = { version = "1.0.228", features = ["derive"] }
|
||||
sqlx = { version = "0.8.6", features = ["runtime-tokio", "sqlite"] }
|
||||
tokio = { version = "1.49.0", features = ["rt-multi-thread", "macros"] }
|
||||
tokio-util = { version = "0.7.13", features = ["io"] }
|
||||
tower-http = { version = "0.6.8", features = ["trace"] }
|
||||
tracing = "0.1.44"
|
||||
tracing-subscriber = { version = "0.3.22", features = ["env-filter"] }
|
||||
|
||||
Reference in New Issue
Block a user