Skip to main content

oxigeo_node/
lib.rs

1//! # oxigeo-node — reserved namespace placeholder
2//!
3//! This crate is a **namespace reservation** for [OxiGeo], the Pure-Rust
4//! geospatial data abstraction library formerly named **OxiGDAL**.
5//!
6//! Version `0.0.1` intentionally contains no functionality. The implementation
7//! of `oxigeo-node` — the successor to the [`oxigdal-node`] crate — ships in the
8//! OxiGeo `0.2.0` line.
9//!
10//! OxiGeo is an independent reimplementation and is **not affiliated with the
11//! GDAL project**.
12//!
13//! [OxiGeo]: https://github.com/cool-japan/oxigdal
14//! [`oxigdal-node`]: https://crates.io/crates/oxigdal-node
15#![forbid(unsafe_code)]
16
17/// Marker constant identifying this crate as a reserved OxiGeo namespace
18/// placeholder (version `0.0.1`; no functionality yet).
19pub const RESERVED_PLACEHOLDER: bool = true;