Update TEST_MAPPING am: ac26ddb180 am: 805dac9481 am: dfbfb563f4 am: f48bb2c838 am: 85e6d66ce8

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

Change-Id: Ia6013e89fb4e934dc663e37e6f7e553abcdca4a0
tree: c51602e3809e3a40f3f9a88f443017ac55bf49d1
  1. src/
  2. .cargo_vcs_info.json
  3. .gitignore
  4. Android.bp
  5. build.rs
  6. Cargo.toml
  7. Cargo.toml.orig
  8. cargo2android.json
  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.