commit | 5e8ee5e80095479904afea0e99f28e20c8e6dc4e | [log] [tgz] |
---|---|---|
author | James Farrell <[email protected]> | Tue May 21 15:04:18 2024 +0000 |
committer | Automerger Merge Worker <[email protected]> | Tue May 21 15:04:18 2024 +0000 |
tree | 21d9b489708c2160d77ca51271247b5ea4caed90 | |
parent | 57d6fd698cca4222f46db777091fe8caeae784d2 [diff] | |
parent | 81ce1c8ce3b8671f0ebedbd7601e95a63ce64695 [diff] |
Update Android.bp by running cargo_embargo am: 182067541f am: 81ce1c8ce3 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/bytes/+/3095103 Change-Id: I2ce46d717c1b5bbc86e9900e238d348eaf577226 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.