Migrate to cargo_embargo. am: 41728e2a7b

Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/protobuf/+/2834511

Change-Id: I6d8a2a020527e5c7a5446a992b1f07acf49576df
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
tree: e53480b90569cebf978467178f3251ccef6a8549
  1. 2.27.1/
  2. benches/
  3. out/
  4. patches/
  5. src/
  6. .cargo_vcs_info.json
  7. Android.bp
  8. build.rs
  9. Cargo.toml
  10. Cargo.toml.orig
  11. cargo2rulesmk.json
  12. cargo_1.out
  13. cargo_embargo.json
  14. LICENSE.txt
  15. METADATA
  16. MODULE_LICENSE_MIT
  17. OWNERS
  18. README.md
  19. regenerate.sh
  20. rules.mk
  21. TEST_MAPPING
README.md

Library to read and write protocol buffers data

Features

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.

Accompanying crates