30 lines
861 B
TOML
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"
|