commit | 81ce1c8ce3b8671f0ebedbd7601e95a63ce64695 | [log] [tgz] |
---|---|---|
author | James Farrell <[email protected]> | Tue May 21 14:38:00 2024 +0000 |
committer | Automerger Merge Worker <[email protected]> | Tue May 21 14:38:00 2024 +0000 |
tree | 21d9b489708c2160d77ca51271247b5ea4caed90 | |
parent | 8fe4ed1ddbc315962dfccda375171248080ce198 [diff] | |
parent | 182067541fbdde60dbf10c9d375474d6a0bd26f9 [diff] |
Update Android.bp by running cargo_embargo am: 182067541f Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/bytes/+/3095103 Change-Id: I02702bdb23a4c4d0022f312027f77c55eb21a0ee Signed-off-by: Automerger Merge Worker <[email protected]>
A utility library for working with bytes.
To use bytes
, first add this to your Cargo.toml
:
[dependencies] bytes = "1"
Next, add this to your crate:
use bytes::{Bytes, BytesMut, Buf, BufMut};
Serde support is optional and disabled by default. To enable use the feature serde
.
[dependencies] bytes = { version = "1", features = ["serde"] }
When building the bytes
documentation the docsrs
option should be used, otherwise feature gates will not be shown. This requires a nightly toolchain:
RUSTDOCFLAGS="--cfg docsrs" cargo +nightly doc
This project is licensed under the MIT license.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in bytes
by you, shall be licensed as MIT, without any additional terms or conditions.