ella-server 0.1.5

Client-server API for the ella datastore.
Documentation
1
2
3
4
5
6
7
8
9
10
11
fn main() {
    #[cfg(all(feature = "protobuf", not(target_os = "windows")))]
    std::env::set_var("PROTOC", protobuf_src::protoc());
    #[cfg(all(feature = "protobuf", not(target_os = "windows")))]
    std::env::set_var("PROTOC_INCLUDE", protobuf_src::include());

    tonic_build::configure()
        .protoc_arg("--experimental_allow_proto3_optional")
        .compile(&["api/engine.proto"], &["api/"])
        .unwrap();
}