Regenerate Android.bp with new cargo2android.py am: 82f0b48534 am: 754fa345b0 am: 046ea25792 am: d7081b4d22 am: 8172e28e0a

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

Change-Id: I70968f011ba309587dfbd53e0fc0ae6f4e9feb82
tree: 4ba7f793f03f66b89caf7106db8ad048c8f10971
  1. src/
  2. .cargo_vcs_info.json
  3. .gitignore
  4. Android.bp
  5. build.rs
  6. Cargo.toml
  7. Cargo.toml.orig
  8. CHANGELOG.md
  9. CODE_OF_CONDUCT.md
  10. LICENSE-APACHE
  11. LICENSE-MIT
  12. METADATA
  13. MODULE_LICENSE_APACHE2
  14. OWNERS
  15. README.md
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.