gRPC
Recipe | Crates | Categories |
---|---|---|
Implement gRPC |
[grpc.incl: fix (P1)](https://github.com/john-cd/rust_howto/issues/513)
Implement gRPC
tonic
implements gRPC over HTTP/2 with full support for asynchronous code. It works with tokio
.
gRPC
is an open-source high performance Remote Procedure Call (RPC) framework that can run in any environment. It can efficiently connect services in and across data centers with pluggable support for load balancing, tracing, health checking and authentication. It is also applicable in the "last mile" of distributed computing to connect devices, mobile applications and browsers to backend services.
fn main() { todo!(); }
[grpc: write (P1)](https://github.com/john-cd/rust_howto/issues/514)