commit | 20e7835d7509c652d011646e463cddbba2d9f4c9 | [log] [tgz] |
---|---|---|
author | Jiyong Park <jiyong@google.com> | Mon Dec 07 15:39:28 2020 +0900 |
committer | Jiyong Park <jiyong@google.com> | Mon Dec 14 16:05:15 2020 +0900 |
tree | c1cbb4485741835a4d33e95fca3be84148610e07 | |
parent | 409db94f576fb6751c29459f955d700ad2ce046c [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: I57a9768fbfdd7ffaa30172a3345d7a50683683b7
A Rust macro to generate structures which behave like a set of bitflags
Add this to your Cargo.toml
:
[dependencies] bitflags = "1.0"
and this to your crate root:
#[macro_use] extern crate bitflags;
The minimum supported Rust version is 1.20 due to use of associated constants.