[package]
edition = "2021"
name = "weather-utils"
version = "0.4.0"
authors = ["Ghislain MARY <ghislain@ghislainmary.fr>"]
build = false
include = [
"/**/*.rs",
"/Cargo.toml",
"README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Set of common and useful weather-related computations."
homepage = "https://github.com/ghismary/weather-utils"
documentation = "https://docs.rs/weather-utils/"
readme = "README.md"
keywords = [
"weather",
"dew-point",
"heat-index",
"conversion",
"temperature",
]
categories = [
"embedded",
"no-std",
"science",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ghismary/weather-utils"
[features]
default = []
no-std = ["micromath"]
[lib]
name = "weather_utils"
path = "src/lib.rs"
[dependencies.approx]
version = "0.5"
[dependencies.micromath]
version = "2.1"
optional = true
[dev-dependencies.more-asserts]
version = "0.3"
[dev-dependencies.rstest]
version = "0.26"