Im looking for a maintained/community used grpc library. however, so far all I have seen look like LLM projects created recently with no one using them, or wrappers for grpc/core library.
For those using grpc in their projects, what are you using?
Im looking for a maintained/community used grpc library. however, so far all I have seen look like LLM projects created recently with no one using them, or wrappers for grpc/core library.
For those using grpc in their projects, what are you using?
I looked at this recently, I don’t think there’s a mature off-the-shelf solution at the moment.
I was thinking about trying to use a shared library or something for the grpc part, but thats looking pretty complicated
I skipped gRPC in my project (even though I’ve used it in my Go projects) and rolled a flatbuffer style buffer library in Zig.
maybe this one could be a short term solution GitHub - agagniere/cgrpc_wrapper: A zig wrapper around grpc's core library C API · GitHub
Otherwise, there’s nothing mature out there.
Im currently trying this. Im struggling with an unrecognised method error, even though im following hoe the example did it. I have a golang server and am teying to make a call from zig.
Hi, I am the author of this wrapper, and also of the underlying package in allyourcodebase.
Don’t hesitate to share your attempt here if it is open source, so that I can take a look.
The examples in the repo are tested to work with the official gRPC example greeter server.
Furthermore, I am integrating the lib in the open-telemetry Zig SDK, and confirm I was able to send all telemetry types to the collector, see Add a gRPC implementation choice: libgrpc by agagniere · Pull Request #83 · open-telemetry/opentelemetry-zig · GitHub