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
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.
The text was updated successfully, but these errors were encountered:
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
andwriteDelimitedTo
; Bazel uses it forquery --output=streamed_proto
andbuild --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.The text was updated successfully, but these errors were encountered: