clojusc / protobuf

A Clojure interface to Google's protocol buffers
https://clojusc.github.io/protobuf/
Eclipse Public License 1.0
72 stars 8 forks source link

Support for textprotos #38

Open pavel-klavik opened 5 years ago

pavel-klavik commented 5 years ago

As far as I understand this library, it allows only to read protos from and into bytes. I would be useful to also add text proto support which is sometimes used for small config files.

It might look like this:

person {
  name: "John Doe"
  email: "jdoe@example.com"
}

or this:

person <
  name: "John Doe"
  email: "jdoe@example.com"
>