This directory contains a Rust implementation of a simple gRPC service using the Tonic framework. It serves as an example and reference for implementing gRPC services in Rust.
- gRPC service implementation using Tonic
- Protocol buffer integration
- Client-server communication
- Error handling
bazel build //rust/helloworld_tonic:...
bazel test //rust/helloworld_tonic:...
# Start the server
bazel run //rust/helloworld_tonic:server
# In another terminal, run the client
bazel run //rust/helloworld_tonic:client
See proto defs here