turn-server-sdk 0.3.0

Client SDK for interacting with the turn-server gRPC API.
Documentation
1
2
3
4
5
6
7
8
9
fn main() {
    println!("cargo:rerun-if-changed=protos/");

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