Clean up rust_test_host TEST_MAPPING after default update am: b8bba2380d am: f7add38751

Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/bitflags/+/1582230

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: I8429df0a9d074d975f101e8ea20c8f7dc5830dab
tree: 5213c9cb685dc4b9832ff9045ca78d147accdd20
  1. patches/
  2. src/
  3. .cargo_vcs_info.json
  4. .gitignore
  5. Android.bp
  6. build.rs
  7. Cargo.toml
  8. Cargo.toml.orig
  9. CHANGELOG.md
  10. CODE_OF_CONDUCT.md
  11. LICENSE-APACHE
  12. LICENSE-MIT
  13. METADATA
  14. MODULE_LICENSE_APACHE2
  15. OWNERS
  16. README.md
  17. TEST_MAPPING
README.md

bitflags

Build Status Join the chat at https://gitter.im/bitflags/Lobby Latest version Documentation Minimum rustc version License

A Rust macro to generate structures which behave like a set of bitflags

Usage

Add this to your Cargo.toml:

[dependencies]
bitflags = "1.0"

and this to your crate root:

#[macro_use]
extern crate bitflags;

Rust Version Support

The minimum supported Rust version is 1.20 due to use of associated constants.