rust-protobuf
rust-protobuf copied to clipboard
Rust implementation of Google protocol buffers
Is there any way where we can instruct proto to not generate impl of Debug trait?
Hi, could protobuf_json_mapping support some function like fn fmt_to(message: &dyn MessageDyn, f: &mut std::fmt::Formatter
generated rust stubs for oneof and nested messages generate sub-modules to namespace the types, however the generated structs and enums in the sub-modules aren't customized. For example ```protobuf message ExampleMessageWithOneof...
When working on a multi-language project, it's useful to use protoc plugins to keep the protobuf build system consistent across all generators. It would be nice to be able to...
Given the proto: ```protobuf syntax = "proto3"; package api; import "google/protobuf/any.proto"; message Meta { } message Object { google.protobuf.Any object = 1; } message Service { Meta meta = 1;...
Hi! I was curious if it would be possible to add [`SourceCodeInfo`](https://docs.rs/protobuf/3.0.2/protobuf/descriptor/struct.SourceCodeInfo.html) support. If so how much effort would be required to add this feature?
no_std
Is there a demand for `no_std` feature?
Error resolving comma between min_len and max_len ```proto syntax = "proto3"; package demov1.common; import "github.com/envoyproxy/protoc-gen-validate/validate/validate.proto"; message DemoRequest { string client_id = 1 [(validate.rules).string = {min_len : 1, max_len : 33}];...
I'm developing a network application that uses protobuf to serialize and de-serialize messages that mostly consist of proto3 `bytes` fields. Since my application serves as a middle-layer to other applications,...