protobuf-nim icon indicating copy to clipboard operation
protobuf-nim copied to clipboard

Protobuf implementation in pure Nim that leverages the power of the macro system to not depend on any external tools

Results 13 protobuf-nim issues
Sort by recently updated
recently updated
newest added

If #4 would be implemented it would also be nice to be able to export the internal representation to a protobuf specification. This could mean that you could write up...

Recently tried to parse a protobuf file with a field named `type`. This causes issues with this library as `type` is a reserved keyword. The error however was super obscure,...

I have a protobuf message server which requires me to put the size of the message on the wire, so the following ``` stream.write(msg, true) ``` works on sending message...