wxbox/crates/tiler/Cargo.toml
core dd2f25a5e8
Some checks are pending
Verify Latest Dependencies / Verify Latest Dependencies (push) Waiting to run
build and test / wxbox - latest (push) Waiting to run
client work
2025-05-16 19:25:51 -04:00

47 lines
No EOL
966 B
TOML

[package]
name = "wxbox-tiler"
version = "0.1.0"
edition = "2024"
[dependencies]
# web server
tokio = { version = "1", features = ["full"] }
axum = "0.8"
tower-http = { version = "0.6", features = ["cors"]}
# caching
moka = { version = "0.12", features = ["future"] }
# logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# error handling
anyhow = "1"
# data parsing
wxbox-grib2 = { version = "0.1", path = "../grib2" }
wxbox-ar2 = { version = "0.1", path = "../ar2" }
# 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" }
# nexrad
geographiclib = "0.1"
rayon = "1.10"
strum = "0.27"
strum_macros = "0.27"
# meta
wxbox-common = { path = "../common" }
chrono = "0.4"
quick-xml = { version = "0.37", features = ["serialize"] }