Add basic JPEG implementation

This commit is contained in:
Aria 2025-03-14 22:01:03 +11:00
parent 7acc03218d
commit 9fe02b4e6e
Signed by untrusted user who does not match committer: aria
GPG key ID: 19AB7AA462B8AB3B
3 changed files with 1256 additions and 27 deletions

View file

@ -4,4 +4,14 @@ version = "0.1.0"
edition = "2024"
[dependencies]
actix-multipart = "0.7.2"
actix-web = "4.10.2"
anyhow = "1.0.97"
base64 = "0.22.1"
image = "0.25.5"
mime = "0.3.17"
serde = { version = "1.0.219", features = ["derive"] }
tempfile = "3.19.0"
tokio = { version = "1.44.1", features = ["macros", "fs", "rt-multi-thread"] }
tracing = "0.1.41"
tracing-subscriber = "0.3.19"