ProtoBuf.jl icon indicating copy to clipboard operation
ProtoBuf.jl copied to clipboard

Julia protobuf implementation

Results 47 ProtoBuf.jl issues
Sort by recently updated
recently updated
newest added
trafficstars

Using a .proto file like the following, I'm unable to generate Julia code using `v0.10.0` or `v0.9.1` There's no issue with `v0.9.0`. ```proto syntax = "proto3"; package mahata; message Keyphrase...

I have this proto file: ```proto syntax = "proto3"; import "google/protobuf/timestamp.proto"; message TestMessage { google.protobuf.Timestamp a = 1; } ``` Invoking `protoc` errors: ``` julia> run(ProtoBuf.protoc(`-I=proto -I=ProtoBuf/gen --julia_out=jlout proto/testproto.proto`)) ProtoBuf/gen:...

Thanks. It took me, a newcomer some time to figure this out, could be helpful for others.

This file https://github.com/googleapis/googleapis/blob/master/google/firestore/v1/query.proto `StructuredQuery_Direction` is generated but `StructuredQuery_FieldFilter`, `StructuredQuery_UnaryFilter`, `StructuredQuery_Projection`, `StructuredQuery_Order` etc. are not generated ```julia # syntax: proto3 using ProtoBuf import ProtoBuf.meta import ProtoBuf.google.protobuf import ._ProtoBuf_Top_.google mutable struct Cursor

This commit adds code to `generate_file` to copy all the comments from the original `.proto` file into the new generated `_pb.jl` file by reading the comments fields off of the...

After updating from ProtoBuf v0.6.1 to v0.7, tensorboard reports no data found in my logging directory. Reverting to ProtoBuf v0.6.1 fixes the problem. Julia TensorFlow v0.10.4 Tensorboard v1.10 (also repro'd...

Consider two Protobuf package, Package 1 has file, `/pkg_root_dir/pkg1/core.proto` and package 2 has file `/pkg_root/pkg2/core.proto`, which is not a situation that one be sure that does not exists when working...

Thanks for this great package! Scanning the documentation, it doesn't look like there's support for reading or writing plain-text format (ie [this](https://developers.google.com/protocol-buffers/docs/reference/cpp/google.protobuf.text_format)). Is that something you'd consider? I might be...

The C++ and Python API define a human readable serialization of protobuf messages which is very useful for logging and debugging. Example: est_system_state { header { time_rel: 0.0 } pos_east:...

Any thoughts on how to implement extensions?