turn-server-protos 0.1.0

Shared TURN server gRPC protocol definitions.
Documentation
1
2
3
4
5
6
7
8
9
fn main() {
    println!("cargo:rerun-if-changed=protobufs/");

    tonic_prost_build::configure()
        .build_server(true)
        .build_client(true)
        .compile_protos(&["./protobufs/server.proto"], &["."])
        .expect("failed to compile gRPC definitions");
}