liquid-rescale-api-v2/Cargo.toml

20 lines
538 B
TOML
Raw Permalink Normal View History

2023-07-10 16:42:58 +00:00
[package]
name = "liquid-rescale-api-v2"
version = "0.1.0"
edition = "2021"
2023-07-13 14:00:09 +00:00
# This seems redundant, but it's necessary for Docker to work
[[bin]]
name = "liquid-rescale-api"
path = "src/main.rs"
2023-07-10 19:54:04 +00:00
[toolchain]
channel = "nightly"
2023-07-10 16:42:58 +00:00
[dependencies]
axum = { version = "0.6", features = ["multipart", "macros"] }
tokio = { version = "1.29.1", features = ["macros", "rt-multi-thread"] }
2023-07-10 19:54:04 +00:00
tower-http = { version = "0.4.1", features = ["limit", "trace"] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
2023-07-10 16:42:58 +00:00
magick_rust = "0.19.0"