1 2 3 4 5 6 7 8 9 10 11 12 13 14
#![feature(closure_lifetime_binder)] #![feature(let_chains)] #![feature(associated_type_defaults)] pub mod strprox; #[doc(inline)] pub use strprox::*; pub mod levenshtein; #[cfg(test)] mod tests; #[cfg(feature = "wasm")] pub mod wasm;