commit | 13bf7624252b38674fe3129df5d7cfe66af917f7 | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <[email protected]> | Wed Feb 16 08:06:34 2022 +0000 |
committer | Android Build Coastguard Worker <[email protected]> | Wed Feb 16 08:06:34 2022 +0000 |
tree | b542d91c6067bc477d8e7c59882c3e7db2a7ce25 | |
parent | b1de609d6fd68b87c1a05f8167b8e4ef1a1fbb5d [diff] | |
parent | 073a8f76e3f94372ed2c11d71efbfcb2b168b424 [diff] |
Snap for 8189365 from 073a8f76e3f94372ed2c11d71efbfcb2b168b424 to tm-frc-neuralnetworks-release Change-Id: Ica8158556b3759718c1a5c0bd28f0a498012c272
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.