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

Google protocol buffers wrapper for Clojure.

Results 28 clojure-protobuf issues
Sort by recently updated
recently updated
newest added

I'm having problems with: [org.flatland/protobuf "0.8.1"] It appears to be compiled for Java 1.7 and I'm using it on Java 1.6. Is is possible to release a version supporting Java...

Document the case where the input to protobuf can omit the key in a map_by hash-map.

It seems that the code currently requires enums to be keywords in the original case when loading them from a map, but converts them to lower case as soon as...

I removed the dependency on lein-protobuf. Compiled al the .proto files (including the tests) and placed them in a separate clojars repo. This is so users are not forced to...

Adds `serialized-size` and `delimited-size` functions to the core namespace, as well as the associated getters in PersistentProtocolBufferMap. Adds more serializing and parsing options to PersistentProtocolBufferMap (serializing to OutputStream, deserializing from...

Hello, I have a project https://github.com/bitemyapp/revise which depends on this library. I recently separated the compiled protocol buffers from the project into a separate jar (and dependency). And I also...

Right now, they use the same naming strategy as fields. It would be nice to be able to make enum values be ALL_CAPS and have them automatically be downcased in...

I'm walking through the README example, but I get an error (see below). I start a sample project with this `project.clj`: ``` clj (defproject sample "0.1.0-SNAPSHOT" :dependencies [[org.clojure/clojure "1.5.1"] [org.flatland/protobuf...