typos/crates/dictgen/src/lib.rs

10 lines
130 B
Rust
Raw Normal View History

2021-07-01 11:39:27 -04:00
#[cfg(feature = "map")]
mod map;
mod table;
mod trie;
2021-07-01 11:39:27 -04:00
#[cfg(feature = "map")]
pub use map::*;
pub use table::*;
pub use trie::*;