commit | 2b95745e709cfb52a81074e4882d0a2cbaaea2ed | [log] [tgz] |
---|---|---|
author | Jiyong Park <jiyong@google.com> | Mon Dec 07 15:40:22 2020 +0900 |
committer | Jiyong Park <jiyong@google.com> | Mon Dec 14 16:05:30 2020 +0900 |
tree | 06a3bc5007ae3de4b9c3aed727bd62173e1ddcd2 | |
parent | bc782db52fedefb4013603417b37e272f9a34a28 [diff] |
add crosvm to com.android.virt To do so, crosvm and its dependencies have the apex_available property set to "//apex_available:platform", "com.android.virt" to explicitly acknowledge the joining. Bug: 174639241 Test: m com.android.virt Change-Id: Ib7374200b36b67511ff4ca03504dc19a1e39a68d
A utility library for working with bytes.
To use bytes
, first add this to your Cargo.toml
:
[dependencies] bytes = "0.5"
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 = "0.5", 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.