protobuf@29

Compile and serialize structured data with Google's Protocol Buffers

brewmacoslinux
Try with needOr install directly
Source

About

Protocol buffers (Google's data interchange format)

Commands

protoc

Examples

Compile a .proto file to generate Python code$ protoc --python_out=. message.proto
Generate C++ code from a protocol buffer definition$ protoc --cpp_out=. --cpp_opt=paths=source_relative schema.proto
Display detailed information about a proto file$ protoc --descriptor_set_out=output.pb input.proto