Crates.io | protobuf-parse2 |
lib.rs | protobuf-parse2 |
version | 4.0.0-alpha.4 |
source | src |
created_at | 2022-08-23 06:43:28.980899 |
updated_at | 2023-11-03 03:18:13.936781 |
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/LYF1999/rust-protobuf/tree/protobuf2/protobuf-parse/ |
repository | https://github.com/LYF1999/rust-protobuf/tree/protobuf2/protobuf-parse/ |
max_upload_size | |
id | 650799 |
size | 309,306 |
.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.