#![forbid(unsafe_code)]
#![doc = "Vietnamese NLP library — tokenization, normalization, segmentation."]
#![doc = ""]
#![doc = "# Quick Start"]
#![doc = ""]
#![doc = "```rust"]
#![doc = "use vn_nlp::tokenize;"]
#![doc = ""]
#![doc = "let tokens = tokenize(\"Xin chào Việt Nam\").unwrap();"]
#![doc = "assert_eq!(tokens[0].text, \"Xin\");"]
#![doc = "```"]
pub use vn_nlp_core::*;
#[cfg(feature = "tokenize")]
pub mod tokenize {
pub use vn_nlp_tokenize::*;
}
#[cfg(feature = "normalize")]
pub mod normalize {
pub use vn_nlp_normalize::*;
}
#[cfg(feature = "segment")]
pub mod segment {
pub use vn_nlp_segment::*;
}
#[cfg(feature = "tokenize")]
pub use vn_nlp_tokenize::tokenize;
#[cfg(feature = "normalize")]
pub use vn_nlp_normalize::normalize;
#[cfg(feature = "segment")]
pub use vn_nlp_segment::segment;