We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I've tried to compile the reserved enum field example from https://protobuf.dev/programming-guides/proto3/#reserved
reserved_enum.proto
syntax = "proto3"; package my.package; enum Foo { reserved 2, 15, 9 to 11, 40 to max; reserved "FOO", "BAR"; }
Using pb-rs src/reserved_enum.proto, with pb-rs version 0.10.0.
pb-rs src/reserved_enum.proto
pb-rs
0.10.0
I haven't checked why it fails as I'm new to quick-protobuf but since #12 mentions reserved being merged I was hoping it might be a quick fix. :)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I've tried to compile the reserved enum field example from https://protobuf.dev/programming-guides/proto3/#reserved
reserved_enum.proto
Using
pb-rs src/reserved_enum.proto
, withpb-rs
version0.10.0
.I haven't checked why it fails as I'm new to quick-protobuf but since #12 mentions reserved being merged I was hoping it might be a quick fix. :)
The text was updated successfully, but these errors were encountered: