cabocha-rs

Example

```bash cargo run --example test ````

Usage

toml [dependencies] cabocha = "*" ```Rust extern crate cabocha;

use cabocha::Parser;

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

let mut tree = parser.parsetotree(sentence);

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