alphaHeavy / protobuf

An implementation of Google's Protocol Buffers in Haskell.
http://hackage.haskell.org/package/protobuf
BSD 3-Clause "New" or "Revised" License
96 stars 18 forks source link

support protobuf3? #24

Open ekg opened 8 years ago

ekg commented 8 years ago

Do you have any plans to support protocol buffers version 3? In some ways it may be easier to implement support for it, as the design was changed since v2 to be more similar to object and structure patterns in a wide array of languages. For instance this would handle #20. All fields have defaults now. (Strings are empty, Booleans are false and numbers are 0.)

sseveran commented 8 years ago

There are no plans to do so in the immediate future. I agree that there are a number of new features that are nice like maps, time, etc... but internally we worked around that already. If you are interested feel free to take a stab at it.

cartazio commented 5 years ago

:) bump?