| Crates.io | grpc-compiler |
| lib.rs | grpc-compiler |
| version | 0.8.3 |
| created_at | 2017-01-08 23:21:48.526697+00 |
| updated_at | 2021-03-28 23:09:02.003598+00 |
| description | gRPC compiler for rust-grpc |
| homepage | |
| repository | |
| max_upload_size | |
| id | 7994 |
| size | 20,852 |
Stub generator for grpc.
Library and protoc-gen-rust-grpc plugin for protoc.
Can be installed with command cargo install grpc-compiler.
Generate .rs files:
protoc --rust-grpc_out=. foo.proto
Generate .rs files (protobuf messages and grpc stubs):
protoc --rust_out=. --rust-grpc_out=. foo.proto
Alternatively, protoc-grpc-rust
crate can be used to invoke codegen programmatically, which only requires protoc command in $PATH.