Initial plumbing

This commit is contained in:
torbjornmolin
2025-09-27 17:16:37 +02:00
commit 0692ba3b97
6 changed files with 1688 additions and 0 deletions

14
Cargo.toml Normal file
View File

@@ -0,0 +1,14 @@
[package]
name = "image-placeholder-generator"
version = "0.1.0"
edition = "2024"
[dependencies]
axum = "0.8.4"
bytes = "1"
serde = { version = "1.0.227", features = ["derive"] }
tokio = { version = "1.47.1", features = ["fs", "rt-multi-thread"] }
tokio-util = { version = "0.7.16", features = ["io"] }
tower-http = { version = "0.6.6", features = ["fs", "trace"] }
tracing-subscriber = "0.3.20"
zip = "5.1.1"