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