typos/crates/dictgen/src/lib.rs
2021-07-01 11:14:30 -05:00

9 lines
130 B
Rust

#[cfg(feature = "map")]
mod map;
mod table;
mod trie;
#[cfg(feature = "map")]
pub use map::*;
pub use table::*;
pub use trie::*;