clojure-protobuf
clojure-protobuf copied to clipboard
Google protocol buffers wrapper for Clojure.
https://developers.google.com/protocol-buffers/docs/proto3#any
Proto file: ``` protobuf message Settings { repeated string currencies = 1; repeated string timezones = 2; } ``` When running `lein jar`, I'm getting these errors: ``` /home/michael/Dev/projects/af-protocol/target/protosrc/af_protocol/protobuf/Events.java:6377: error:...
Avoids confusion
I always find it confusing when there are flatland forks of libraries, sometimes the authors one is the canonical one, sometimes it is the flatland that is canonical, or has...
Removes the hardcoded `true` for `use_extension`. Not sure if this actually works as I'm testing for the `false` case. It might break `true` but does work for `false`. Someone with...
All of the calls to [`fromProtoValue`](https://github.com/ninjudd/clojure-protobuf/blob/develop/src/flatland/protobuf/PersistentProtocolBufferMap.java#L402) and [`getValAt`](https://github.com/ninjudd/clojure-protobuf/blob/develop/src/flatland/protobuf/PersistentProtocolBufferMap.java#L721) in `PersistentProtocolBufferMap` have the `use_extensions` parameter hard coded to `true`. This causes runtime failures on schemas that don't use extensions. To workaround...
Hi, thanks for a great project! When I add `[org.flatland/protobuf "0.8.2"]` and try to build project, I get the following message: ``` Retrieving org/flatland/protobuf/0.8.2/protobuf-0.8.2.jar from clojars Could not find artifact...
I followed the Person example and failed to create a protobuf instance. I'm running on OSX Mavericks. ``` bash lein --version Leiningen 2.3.4 on Java 1.7.0_55 Java HotSpot(TM) 64-Bit Server...