pbdirect
pbdirect copied to clipboard
Read/Write Scala objects directly to Protobuf with no .proto file definitions
When I do have to serialize and deserialize case class with more than 22 columns, it just complains that there is no implicit defined. Is there a way around this?...
exception is thrown when: ``` case class A(b: B) case class B(c: Option[C]) case class C(s1: String, s2: String) val msg = A(B(Some(C("ds", "xd")))) val bytes = msg.toPB val parsed...
Nice library 👍 it would be nice to have support for schema evolution, so I can add and remove fields and be able to deserialize older data. Thanks