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