protobuf-parse 3.7.2

Parse `.proto` files. Files are parsed into a `protobuf::descriptor::FileDescriptorSet` object using either: * pure rust parser (no dependencies) * `protoc` binary (more reliable and compatible with Google's implementation)
Documentation
1
2
3
4
//! Parse `.proto` files using `protoc` command.

pub(crate) mod command;
pub(crate) mod parse_and_typecheck;