commit | f39b365ab0c436bd6ef8326b18ae0662dc093fe7 | [log] [tgz] |
---|---|---|
author | Julien Desprez <jdesprez@google.com> | Tue Feb 16 17:04:44 2021 +0000 |
committer | Julien Desprez <jdesprez@google.com> | Tue Feb 16 17:04:46 2021 +0000 |
tree | c583a7cb4e6b4c79a3bdaa6fd94cadb7d288d8d2 | |
parent | 49f37ac424d7df1f8ee1989d8f3b5ceb6b6a9ea0 [diff] |
Clean up rust_test_host TEST_MAPPING after default update After b/177689340, rust_test_host doesn't need TEST_MAPPING config anymore to run in presubmit. Change-Id: Ic725d397a4e3b0056a78ac45d581e77b4df33f00 Test: presubmit Bug: 178646865
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.