commit | 7546f8a023752d162427156a49a62ffbad79e398 | [log] [tgz] |
---|---|---|
author | Julien Desprez <[email protected]> | Wed Feb 10 20:35:36 2021 +0000 |
committer | Automerger Merge Worker <[email protected]> | Wed Feb 10 20:35:36 2021 +0000 |
tree | 5213c9cb685dc4b9832ff9045ca78d147accdd20 | |
parent | 02d9a9abf499c32652c6f44509184116c7ed63c2 [diff] | |
parent | 600080cdec5ed3fb0d5bc5de7c12ddccaaf326f9 [diff] |
Clean up rust_test_host TEST_MAPPING after default update am: b8bba2380d am: f7add38751 am: 600080cdec Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/bitflags/+/1582230 MUST ONLY BE SUBMITTED BY AUTOMERGER Change-Id: Ibaa89d58028f2aadb92039b5268c9d0aeccd7287
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.