weather_dot_gov_rs/Cargo.toml

20 lines
576 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"
license = "AGPL-3.0"
version = "0.1.0"
edition = "2021"
readme = "README.md"
keywords = ["weather", "forecast", "dwml"]
[dependencies]
quick-xml = { version = "0.37.2", features = ["overlapped-lists", "serialize"] }
serde = { version = "1.0.217", features = ["derive"] }
[dev-dependencies]
anyhow = "1.0.95"
reqwest = "0.12.12"
tokio = { version = "1.43.0", features = ["macros", "rt-multi-thread"] }