# cabocha-rs
[](https://crates.io/crates/cabocha)
[](https://docs.rs/cabocha)
[](https://github.com/Yasu-umi/cabocha-rs/actions)
## 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.parse_to_tree(sentence);
println!("{}", tree.to_string(cabocha::consts::CABOCHA_FORMAT::TREE));
}
```
## LISENCE
[MIT](./LISENCE)