[package]
edition = "2021"
rust-version = "1.75.0"
name = "nexrad-render"
version = "1.0.0-rc.4"
authors = ["Daniel Way <contact@danieldway.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rendering functions for NEXRAD weather radar data visualization."
readme = "README.md"
keywords = [
"nexrad",
"radar",
"weather",
"meteorology",
"noaa",
]
categories = [
"science",
"visualization",
"rendering",
]
license = "MIT"
repository = "https://github.com/danielway/nexrad"
[lib]
name = "nexrad_render"
path = "src/lib.rs"
[[test]]
name = "color_scale"
path = "tests/color_scale.rs"
[[test]]
name = "interpolation"
path = "tests/interpolation.rs"
[[test]]
name = "partial_sweep"
path = "tests/partial_sweep.rs"
[[test]]
name = "product"
path = "tests/product.rs"
[[test]]
name = "render_options"
path = "tests/render_options.rs"
[[bench]]
name = "render_radials"
path = "benches/render_radials.rs"
harness = false
[dependencies.image]
version = "0.25"
[dependencies.nexrad-model]
version = "1.0.0-rc.2"
[dependencies.thiserror]
version = "2.0.16"
[dev-dependencies.criterion]
version = "0.8.1"
[dev-dependencies.nexrad-data]
version = "1.0.0-rc.4"
[dev-dependencies.nexrad-decode]
version = "1.0.0-rc.3"