1 2 3 4 5 6 7 8
//! A Japanese morphological analyzer written in pure Rust. extern crate byteorder; pub mod dic; pub mod sysdic; pub mod tokenizer; pub const VERSION: &'static str = env!("CARGO_PKG_VERSION");