budoux_phf_rs/lib.rs
1mod model;
2pub use model::{Model, ScoreMap};
3#[cfg(feature = "ja")]
4mod model_ja;
5#[cfg(feature = "ja_knbc")]
6mod model_ja_knbc;
7#[cfg(feature = "th")]
8mod model_th;
9#[cfg(feature = "zh_hans")]
10mod model_zh_hans;
11#[cfg(feature = "zh_hant")]
12mod model_zh_hant;
13
14mod parser;
15pub use parser::Parser;