geohash_rs/
lib.rs

1//! 'geohash_rs' is a geohash encoder for rust.
2
3pub mod base32;
4pub mod decoder;
5pub mod encoder;
6const LEFT: usize = 0;
7const RIGHT: usize = 1;
8
9pub use decoder::decode;
10pub use encoder::encode;