//! OGC Well-Known Text (WKT) reader and writer.
//!
//! Mirrors `boost/geometry/io/wkt/{read,write,wkt}.hpp`. The parser
//! emits a [`geometry_model::DynGeometry`] because WKT is heterogeneous
//! by construction (a `GEOMETRYCOLLECTION` mixes kinds); the writer
//! accepts any concrete geometry that implements the model traits.
//!
//! Reference: OGC Simple Feature Access Part 1 (SFA-1) ยง7 for the WKT
//! grammar.
extern crate alloc;
pub use ;
pub use ;
pub use ;