commit | bd87b64fbfd1f4f0e681096514a89167a393d8c4 | [log] [tgz] |
---|---|---|
author | Joel Galenson <jgalenson@google.com> | Thu Oct 28 15:17:12 2021 -0700 |
committer | Joel Galenson <jgalenson@google.com> | Thu Oct 28 15:17:12 2021 -0700 |
tree | 5c9ff9a34bbcd6c5fbab2912dfca302f00d4d257 | |
parent | 1b3445f64d26d631b0b9b296aa9a8d921791eaf7 [diff] |
Add apex_available. The test changes are side effects due to rerunning cargo2android.py. Test: None Change-Id: Ib5c3668115bab6117334b8135f2ea5d69b3f976a
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"] }
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.