protoc-plugin icon indicating copy to clipboard operation
protoc-plugin copied to clipboard

A protoc compiler plugin for Clojure applications

Results 8 protoc-plugin issues
Sort by recently updated
recently updated
newest added

We're trying to use a `protoc-gen-clojure`-gen'd lib in our application, and the top-level namespace require includes the namespace itself. This doesn't cause problems on first load, but does cause problems...

In 0.9.3 when a Protocol Buffer message contains a field named: "values", all of the fields (except the "values" field) are missing in the generated code. **The message:** ``` message...

https://github.com/protocolbuffers/protobuf/blob/v3.12.0-rc1/docs/implementing_proto3_presence.md

Given a foo.proto importing another bar.proto, if bar.proto uses a go_package option, the require of the bar ns in the foo ns will be output as [ :as ] This...

https://github.com/protojure/protoc-plugin/releases

Depends on https://github.com/protojure/lib/issues/4

While attempting to `protoc` compile a bunch of .proto files, several times I encountered this message: ``` foo.proto is a proto3 file that contains optional fields, but code generator protoc-gen-clojure...

Hello, is there anyway to parse and edn like `{#xtdb/id \"1073c72f6e04ee66347a627efd9096910b790e66\" {:map {:k2 \"v2\"}, :bool? true, :number 3.0, :listing [1.0 2.0 3.0 4.0], :key \"ARROZ\", :crux.db/id :id1}}`to google.protobuf.struct ? Generated...