Skip to main content

geo_coding/
lib.rs

1#![doc = include_str!("../README.md")]
2#![cfg_attr(docsrs, feature(doc_cfg))]
3#![no_std]
4
5extern crate alloc;
6
7#[cfg(any(feature = "std", test))]
8extern crate std;
9
10mod distance;
11mod tree;
12
13pub use self::distance::*;
14pub use self::tree::*;