1#[cfg(feature = "embed-unidic")] 2pub mod embedded; 3 4pub const DICTIONARY_NAME: &str = "unidic"; 5const VERERSION: &str = env!("CARGO_PKG_VERSION"); 6 7pub fn get_version() -> &'static str { 8 VERERSION 9}