//! Vector Tile (MVT) support.
//!
//! This module implements low-level read/write utilities for the Mapbox Vector Tile
//! (MVT) protobuf format.
//!
//! Together these pieces allow encoding/decoding full tiles, transforming properties,
//! and converting between vector‑tile features and higher‑level `GeoFeature`s for
//! GeoJSON export.
//!
//! This module re‑exports the most commonly used types for convenience:
//! [`VectorTileLayer`] and [`VectorTile`].
pub use GeomType;
pub use VectorTileLayer;
pub use VectorTile;
pub use ;
/// Trait for encoding/decoding individual MVT property values. Exposed so
/// downstream callers (e.g. `TileSizeMonitor`'s breakdown) can measure the
/// encoded byte cost of each value without depending on the full layer
/// encoder.
pub use GeoValuePBF;