nimpb icon indicating copy to clipboard operation
nimpb copied to clipboard

Protocol Buffers for Nim

Results 4 nimpb issues
Sort by recently updated
recently updated
newest added

@oswjk did it ever work? before https://github.com/oswjk/nimpb/pull/10 I ran into https://github.com/oswjk/nimpb/issues/4; after https://github.com/oswjk/nimpb/pull/10 I get: ``` ERROR, test=Required.Proto3.ProtobufInput.RepeatedScalarSelectsLast.DOUBLE.JsonOutput: Output was not equivalent to reference message: modified: optional_double: 2.2250738585072014e-308 -> 2.2250738585072009e-308...

text format is very useful for debugging, or for cross language, human readable,, type safe, configuration files: https://developers.google.com/protocol-buffers/docs/reference/cpp/google.protobuf.text_format ## example of text format https://github.com/BVLC/caffe/blob/master/models/bvlc_reference_caffenet/solver.prototxt ## usage ```nim let message =...

eg: nimpb/compiler/nimpb_build => this could go under ./build/bin/nimpb_build protobuf-all-3.5.1.zip and protobuf-3.5.1 could go under ./build/ ... .gitignore could add `./build/` so that `git status` can stay clean (eg after running...

on OSX it's just `brew install protobuf` ; I'd like to just be able to use that binary (eg maybe in nimcfg or initialization code or something, via `protoc_binary=$homebrew_D/bin/protoc`) eg,...