This commit is contained in:
2026-03-25 10:58:10 +01:00
commit 07c4c04eb7
23 changed files with 7365 additions and 0 deletions

16
backend/Cargo.toml Normal file
View File

@@ -0,0 +1,16 @@
[package]
name = "backend"
version = "0.1.0"
edition = "2024"
[dependencies]
axum = { version = "0.8.8", features = ["multipart", "macros"] }
chrono = { version = "0.4.44", features = ["serde"] }
dotenvy = "0.15.7"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
slug = "0.1.6"
tokio = { version = "1.50.0", features = ["full"] }
tower-http = { version = "0.6.8", features = ["cors", "fs"] }
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.23", features = ["env-filter"] }