weather_dot_gov_rs/src/lib.rs

9 lines
209 B
Rust

//! Parses the DWML machine-readable format produced by forecast.weather.gov.
//!
//! Try `cargo run --example reqwest 40.71 -74.01`
pub mod dwml;
/// Top-level structure for parsed data
pub use dwml::Dwml;