Crates.io | protobuf-parse |
lib.rs | protobuf-parse |
version | 3.7.1 |
source | src |
created_at | 2021-11-01 06:40:45.346013 |
updated_at | 2024-10-15 21:15:14.424279 |
description | 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) |
homepage | https://github.com/stepancheg/rust-protobuf/tree/master/protobuf-parse/ |
repository | https://github.com/stepancheg/rust-protobuf/tree/master/protobuf-parse/ |
max_upload_size | |
id | 475044 |
size | 318,986 |
.proto
filesParse .proto
file definitions, not the protobuf text format serialization.
Files can be parsed using pure Rust parser (mod pure
)
or using the protoc
command (mod protoc
).
This crate is not meant to be used directly, but rather through the protobuf-codegen
crate.
If you think this crate might be useful to you,
please consider creating an issue,
until that this crate is considered to have no stable API.