protobuf@3

Compile and serialize structured data using 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 message.proto
Display the descriptor of a .proto file$ protoc --descriptor_set_out=descriptor.pb message.proto