gRPC-rs
is a Rust wrapper of gRPC Core. gRPC is a high performance, open source universal RPC framework that puts mobile and HTTP/2 first.
This project is still under development. The following features with the check marks are supported:
For Linux and MacOS, you also need to install gcc (or clang) too.
For Windows, you also need to install following software:
$ git submodule update --init --recursive # if you just cloned the repository
$ cargo build
If you're getting linker errors when building your project using gRPC-rs
, head
down to the openssl
feature section for a possible fix.
To generate the sources from proto files:
$ cargo install protobuf-codegen
$ cargo install grpcio-compiler
$ protoc --rust_out=. --grpc_out=. --plugin=protoc-gen-grpc=`which grpc_rust_plugin` example.proto
Programmatic generation can be used to generate Rust modules from proto files
via your build.rs
by using protoc-grpcio.
For more information and examples see README.
To include this project as a dependency:
[dependencies]
grpcio = "0.4"
secure
secure
feature enables support for TLS encryption and some authentication
mechanism. When you do not need it, for example when working in intranet,
you can disable it by using the following configuration:
[dependencies]
grpcio = { version = "0.4", default-features = false, features = ["protobuf-codec"] }
openssl
gRPC-rs
comes vendored with gRPC Core
, which by default uses BoringSSL
instead of OpenSSL. This may cause linking issues due to symbol clashes and/or
missing symbols when another one of your dependencies uses OpenSSL. To resolve
this, you can tell gRPC-rs
to use OpenSSL too by specifying "openssl"
in
your Cargo.toml
's features list for gprcio
. E.g.:
toml
[dependencies]
grpcio = { version = "0.4.4", features = ["openssl"] }
See benchmark to find out how to run a benchmark by yourself.
See cross_compile