You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Yes, but since grpc-rs is written in Rust, you may need to build up some bindings between C library and Rust.
grpc-rs runtime is developed without depending on specific codec, you can provide your known codec, check how it works in https://github.com/tikv/grpc-rs/blob/master/src/codec.rs. But gRPC is hard to used without a compiler, and compiler has to depend on specific codec. So to use a different protobuf library, you need to 1. provide codec function, 2. write a grpc compiler.
Hi,
Maybe this is a silly question: but is it possible to use grpc-rs with plain C based Protocol Buffers ? e.g.
https://github.com/nanopb/nanopb (for memory restricted system).
https://github.com/protobuf-c/protobuf-c
I think the output of those library are just C's struct, is it possible to use grpc-rs with these struct to achieve network communication?
Thanks!
The text was updated successfully, but these errors were encountered: