Add basic JPEG implementation
This commit is contained in:
parent
7acc03218d
commit
9fe02b4e6e
3 changed files with 1256 additions and 27 deletions
10
Cargo.toml
10
Cargo.toml
|
@ -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"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue