cabocha-rs

cabocha at crates.io cabocha at docs.rs Actions Status

Example

bash cargo run --example test

Usage

toml [dependencies] cabocha = "*"

```Rust use cabocha::parser::Parser;

fn main() { let parser = Parser::new(""); let sentence = "我輩は猫である。";

let mut tree = parser.parsetotree(sentence);

println!("{}", tree.tostring(cabocha::consts::CABOCHAFORMAT::TREE)); } ```

LISENCE

MIT