commit | 84ad640730426064d81e25ce95a73f1c2ff59c64 | [log] [tgz] |
---|---|---|
author | Martin Geisler <[email protected]> | Fri Mar 17 20:41:53 2023 +0000 |
committer | Automerger Merge Worker <[email protected]> | Fri Mar 17 20:41:53 2023 +0000 |
tree | 1b8a2e533e43841e452dbd543a352a41bda313b9 | |
parent | f14b31bb0c5dc946d7c30c1333b799b1bbb88714 [diff] | |
parent | 77922563f4024836b484b2c4b2060f9ecd33d5ce [diff] |
[automerger skipped] bytes: enable “serde” Cargo feature am: 86af907457 -s ours am: 77922563f4 -s ours am skip reason: Merged-In I4709fb521feef7ffa519a47a32c80c290974f219 with SHA-1 5309249612 is already in history Original change: https://googleplex-android-review.googlesource.com/c/platform/external/rust/crates/bytes/+/22119591 Change-Id: I20a3cb859047ba50b9c96c12e746f1e275f7323d 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.