//! RFC 7946 `GeoJSON` reader and writer.
//!
//! Not part of Boost.Geometry; follows RFC 7946. The parser emits a
//! [`geometry_model::DynGeometry`] (a `GeoJSON` `GeometryCollection` is
//! heterogeneous); the writer serialises any concrete model geometry
//! to a `GeoJSON` string. Feature objects and property bags are out of
//! scope — only the `geometry` member's OGC-equivalent kinds.
extern crate alloc;
pub use GeoJsonError;
pub use from_geojson;
pub use to_geojson;