commit | 02d9a9abf499c32652c6f44509184116c7ed63c2 | [log] [tgz] |
---|---|---|
author | Jiyong Park <[email protected]> | Tue Dec 15 19:21:27 2020 +0000 |
committer | Automerger Merge Worker <[email protected]> | Tue Dec 15 19:21:27 2020 +0000 |
tree | c1cbb4485741835a4d33e95fca3be84148610e07 | |
parent | c8810d6b1236631243f09c108e3c2de1ac813dd5 [diff] | |
parent | 6d95c14fc530f301381f6e6fe854fcb0a7cdac05 [diff] |
add crosvm to com.android.virt am: 20e7835d75 am: 620b4367f2 am: 6d95c14fc5 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/bitflags/+/1527444 MUST ONLY BE SUBMITTED BY AUTOMERGER Change-Id: Ibd8edef3e19b5e2dc241152702b94e0c532b9db9
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.