wxbox/crates/tiler/Cargo.toml
core 72cb16ac3f
Some checks failed
Verify Latest Dependencies / Verify Latest Dependencies (push) Has been cancelled
build and test / wxbox - latest (push) Has been cancelled
new tiler
2025-04-02 10:17:02 -04:00

34 lines
No EOL
619 B
TOML

[package]
name = "wxbox-tiler"
version = "0.1.0"
edition = "2024"
[dependencies]
# web server
tokio = { version = "1", features = ["full"] }
axum = "0.8"
# caching
moka = { version = "0.12", features = ["future"] }
# logging
tracing = "0.1"
tracing-subscriber = "0.3"
# error handling
anyhow = "1"
# data parsing
wxbox-grib2 = { version = "0.1", path = "../grib2" }
# configuration
serde = { version = "1", features = ["derive"] }
toml = "0.8"
# network requests
reqwest = { version = "0.12", features = ["stream"] }
flate2 = "1"
# image rendering
image = "0.25"
wxbox-pal = { version = "0.1", path = "../pal" }