This commit is contained in:
2026-01-12 00:53:54 +01:00
commit 2f827c168d
26 changed files with 3145 additions and 0 deletions

16
server/Cargo.toml Normal file
View File

@@ -0,0 +1,16 @@
[package]
name = "server"
version = "1.0.0"
edition = "2024"
[dependencies]
anyhow = "1.0.100"
axum = "0.8.8"
base64 = "0.22.1"
chrono = "0.4.42"
dotenvy = "0.15.7"
image = { version = "0.25.9", features = ["png"] }
tokio = { version = "1.49.0", features = ["full"] }
tower-http = { version = "0.6.8", features = ["fs", "trace", "cors"] }
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.22", features = ["env-filter", "fmt"] }