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
{{ message }}
This repository was archived by the owner on Apr 21, 2026. It is now read-only.
Currently, protoscope doesn't allow dumping or representing varint-delimited protobuf messages, which is used somewhat frequently in parts of the world. E.g., some official protobuf libraries has parseDelimitedFrom and writeDelimitedTo; Bazel uses it for query --output=streamed_proto and build --build_event_binary_file=.... It would be helpful to add support for these dumps, behind an option of course.
A simple extension to the protoscope language to allow representing varint-delimited protos could be the --- document separator used by YAML.
Currently, protoscope doesn't allow dumping or representing varint-delimited protobuf messages, which is used somewhat frequently in parts of the world. E.g., some official protobuf libraries has
parseDelimitedFromandwriteDelimitedTo; Bazel uses it forquery --output=streamed_protoandbuild --build_event_binary_file=.... It would be helpful to add support for these dumps, behind an option of course.A simple extension to the protoscope language to allow representing varint-delimited protos could be the
---document separator used by YAML.