ezu 0.7.0

Painterly cartography engine: render vector tiles as paintings (umbrella crate)
Documentation
//! # ezu
//!
//! Painterly cartography — render vector tiles as paintings.
//!
//! This umbrella crate re-exports the sub-crates of the ezu workspace under a
//! single namespace, gated by feature flags.

pub use ezu_core as core;
pub use ezu_graph as graph;

#[cfg(feature = "features")]
pub use ezu_features as features;

#[cfg(feature = "paint")]
pub use ezu_paint as paint;

#[cfg(feature = "style-json")]
pub use ezu_style as style;

#[cfg(feature = "translate")]
pub use ezu_translate as translate;