agones 1.49.0

The Rust SDK for Agones.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
fn main() {
    tonic_build::configure()
        // The SDK is just a client, no need to build the server types
        .build_server(false)
        .compile_protos(
            &["proto/sdk/alpha/alpha.proto", "proto/sdk/sdk.proto"],
            &[
                "proto/googleapis",
                "proto/grpc-gateway",
                "proto/sdk/alpha",
                "proto/sdk",
            ],
        )
        .expect("failed to compile protobuffers");
}