22 lines
748 B
TOML
22 lines
748 B
TOML
[package]
|
|
name = "weather_dot_gov_rs"
|
|
description = "Parses DWML XML from forecast.weather.gov"
|
|
repository = "https://six-five-six-four.com/git/reactor/weather_dot_gov_rs"
|
|
# https://git.pixie.town/thufie/npl-builder/src/commit/a3dbbdb0ee3894c15ea2adb23ee2af6fdc9a1c09/cnpl.md
|
|
license = "CNPL"
|
|
version = "0.2.0"
|
|
edition = "2021"
|
|
|
|
readme = "README.md"
|
|
keywords = ["weather", "forecast", "dwml"]
|
|
|
|
[dependencies]
|
|
chrono = "0.4.41"
|
|
quick-xml = { version = "0.37.5", features = ["overlapped-lists", "serialize"] }
|
|
serde = { version = "1.0.219", features = ["derive"] }
|
|
|
|
[dev-dependencies]
|
|
anyhow = "1.0.95"
|
|
reqwest = { version = "0.12.15", default-features = false, features = ["rustls-tls"] }
|
|
tokio = { version = "1.44.2", features = ["macros", "rt"] }
|