wxbox/crates/tiler/Cargo.toml

30 lines
655 B
TOML
Raw Normal View History

2024-10-18 21:34:08 -04:00
[package]
name = "wxbox-tiler"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix-web = "4"
thiserror = "1"
ordered-float = "4"
tikv-jemallocator = "0.6"
reqwest = "0.12"
flate2 = "1"
2024-10-19 00:06:56 -04:00
tokio = "1"
2025-03-06 22:04:41 -05:00
wxbox-pal = { version = "0.1", path = "../pal" }
2024-10-19 00:06:56 -04:00
png = "0.17"
mime = "0.3.17"
2025-03-06 22:04:41 -05:00
wxbox-grib2 = { version = "0.1", path = "../grib2" }
2025-01-01 19:53:23 -05:00
tracing = "0.1"
tracing-subscriber = "0.3"
2025-01-01 22:05:07 -05:00
toml = "0.8"
serde = { version = "1", features = ["derive"] }
2025-01-03 22:23:08 -05:00
serde_json = "1"
2025-03-06 22:04:41 -05:00
wxbox-common = { path = "../common" }
2025-01-03 22:23:08 -05:00
image = "0.25"
2024-10-23 21:56:57 -04:00
[dev-dependencies]
approx = "0.5"
insta = "1.40"