wxbox/crates/nexrad-decode/Cargo.toml
core 5c597977ee
Some checks are pending
Verify Latest Dependencies / Verify Latest Dependencies (push) Waiting to run
build and test / wxbox - latest (push) Waiting to run
chore: cleanups
2025-05-19 20:11:00 -04:00

30 lines
861 B
TOML

[package]
name = "nexrad-decode"
version = "0.1.1"
description = "Decoding functions and models for NEXRAD weather radar data."
authors = ["Daniel Way <contact@danieldway.com>"]
repository = "https://github.com/danielway/nexrad/nexrad-decode"
license = "MIT"
edition = "2021"
[features]
default = ["uom", "nexrad-model"]
[dependencies]
log = { workspace = true }
thiserror = { workspace = true }
bincode = { workspace = true }
serde = { workspace = true }
chrono = { workspace = true }
nexrad-model = { version = "0.1.0", path = "../nexrad-model", optional = true }
uom = { workspace = true, optional = true }
[dev-dependencies]
clap = { workspace = true }
env_logger = { workspace = true }
tokio = { workspace = true }
nexrad-data = { version = "0.2.0", path = "../nexrad-data" }
[[example]]
name = "elevation_angles"
path = "examples/elevation_angles.rs"