//! Ezu Style Spec — declarative style specification for painterly map
//! rendering.
//!
//! Parsing this crate produces a [`Document`] — a pure data structure,
//! not an evaluator. To execute it, feed the document to
//! `ezu-graph::build_graph` with a `NodeRegistry`.
//!
//! ```no_run
//! let json = std::fs::read_to_string("watercolor.json").unwrap();
//! let doc = ezu_style::Document::from_json(&json).unwrap();
//! println!("{} ({} nodes)", doc.name, doc.nodes.len());
//! ```
pub use *;