1 unstable release

Uses old Rust 2015

0.1.0 Jan 26, 2018

#1773 in Text processing

MIT license

8.5MB
6.5K SLoC

C++ 6K SLoC // 0.3% comments Rust 374 SLoC ReScript 200 SLoC C 59 SLoC Bitbake 7 SLoC // 0.3% comments

rust-jieba

Build Status codecov Crates.io docs.rs

cppjieba Rust binding

Installation

Add it to your Cargo.toml:

[dependencies]
rust-jieba = "0.1"

Example

extern crate rust_jieba;

use rust_jieba::Jieba;

fn main() {
    let jieba = Jieba::from_dir("cjieba-sys/cppjieba-cabi/cppjieba/dict");
    let words = jieba.cut("南京市长江大桥", true);
    assert_eq!(vec!["南京市", "长江大桥"], words);
}

License

This work is released under the MIT license. A copy of the license is provided in the LICENSE file.

Dependencies