gwp 0.1.4

A standalone, pure Rust gRPC wire protocol for GQL (ISO/IEC 39075)
Documentation
1
2
3
4
5
6
7
8
9
10
fn main() -> Result<(), Box<dyn std::error::Error>> {
    tonic_prost_build::configure()
        .build_server(true)
        .build_client(true)
        .compile_protos(
            &["proto/gql_types.proto", "proto/gql_service.proto"],
            &["proto"],
        )?;
    Ok(())
}