geo_index/
lib.rs

1#![doc = include_str!("../README.md")]
2#![warn(missing_docs)]
3
4mod error;
5pub mod indices;
6pub mod kdtree;
7pub mod rtree;
8mod r#type;
9
10pub use error::GeoIndexError;
11pub use r#type::{CoordType, IndexableNum};
12
13#[cfg(test)]
14pub(crate) mod test;