Snap for 11881322 from f6f4fcf3f65ec015bfeff6c8b540c19934d17058 to 25D4-release

Change-Id: I4785bffd3d6c025e38f1aef7953eaecdfb5c5852
tree: 9845ff21508e3ae246ab57025eab8e8503b8960f
  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