yoin_core/
lib.rs

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