The Rust wrapper of gRPC Core. gRPC is a high performance, open source, general RPC framework that puts mobile and HTTP/2 first.
This project is still under developement, not all features are supported.
Only linux and macOS are tested.
$ cargo build --all
To generate the sources from proto files:
$ cargo install protobuf
$ cargo install --git https://github.com/pingcap/grpc-rs.git grpc-compiler
$ protoc --rust_out=. --grpc_out=. --plugin=protoc-gen-grpc=`which grpc_rust_plugin` example.proto
To include this project as a dependency:
[dependencies.grpc]
git = "https://github.com/pingcap/grpc-rs.git"
See benchmark to find out how to run a benchmark by yourself.