| commit | 7341fcb74547dbbda375b990fc31e87eb4067e87 | [log] [tgz] |
|---|---|---|
| author | Treehugger Robot <treehugger-gerrit@google.com> | Wed Apr 12 20:33:09 2023 +0000 |
| committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Wed Apr 12 20:33:09 2023 +0000 |
| tree | 971c49e3e23c1508cd5d3449db1162011f57ccc6 | |
| parent | d7a4876c00ed6f68b305c8ef7f5340cb0ef7c295 [diff] | |
| parent | 9b9bcfecdda3b09593c75f028e621fb20d542370 [diff] |
Merge "Upgrade protobuf to 3.2.0" am: 7dc275cd70 am: 9b9bcfecdd Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/protobuf/+/2520001 Change-Id: I7aed68358abadf1f21e89b0f289f97f7fd14cf98 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This crate has one feature, which is with-bytes.
with-bytes enables protobuf crate support for bytes crate: when parsing bytes or strings from bytes::Bytes, protobuf will be able to reference the input instead of allocating subarrays.
Note, codegen also need to be instructed to generate Bytes or Chars for bytes or string protobuf types instead of default Vec<u8> or String, just enabling option on this crate is not enough.
See Customize struct in protobuf-codegen crate.
protobuf-json-mapping implements JSON parsing and serialization for protobuf messages.protobuf-codegen can be used to rust code from .proto crates.protoc-bin-vendored contains protoc command packed into the crate.protobuf-parse contains .proto file parser. Rarely need to be used directly, but can be used for mechanical processing of .proto files.