bareun_rs 0.1.0

Bareun is a Korean Morphological analyzer for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use tonic_build;

fn main() -> Result<(), Box<dyn std::error::Error>> {
    tonic_build::configure().build_server(false).compile(
        &[
            "proto/custom_dict.proto",
            "proto/language_service.proto",
            "proto/bareun/dict_common.proto",
        ],
        &["proto"],
    )?;

    Ok(())
}