Crates.io | opencc |
lib.rs | opencc |
version | 0.3.0 |
source | src |
created_at | 2015-05-26 16:48:01.96852 |
updated_at | 2018-01-31 01:56:42.225113 |
description | OpenCC binding for Rust |
homepage | |
repository | https://github.com/messense/opencc-rs |
max_upload_size | |
id | 2223 |
size | 9,041 |
OpenCC binding for Rust.
You should install OpenCC 1.0.x library first.
Add it to your Cargo.toml
:
[dependencies]
opencc = "*"
Add extern crate opencc
to your crate root and your're good to go!
For example:
extern crate opencc;
use opencc::OpenCC;
fn main() {
let cc = OpenCC::new("t2s.json");
println!("{}", cc.convert("乾坤一擲"));
println!("{}", cc.convert("開放中文轉換"));
}
This work is released under the MIT license. A copy of the license is provided in the LICENSE file.