-
Notifications
You must be signed in to change notification settings - Fork 497
Closed
Labels
Description
I'm looking into porting one of my Rust projects over to Bazel. It uses Protobuf/gRPC, however it is built on Tonic rather than stepancheg's Protobuf/gRPC libraries which are used in the existing proto rules. I've used both and I personally much prefer Tonic, as it generates cleaner and simpler Protobuf objects, the gRPC stubs use async/await, and the whole library is an integrated part of the Tokio stack. It'd be really nice to have separate rules for Tonic. Something like rust_tonic_library
.
tinkrtailor and jgiles