commit | 1f028991cc9bd1845a03c28dca6fc7b7e4ea187f | [log] [tgz] |
---|---|---|
author | Victor Hsieh <victorhsieh@google.com> | Fri May 14 22:56:41 2021 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Fri May 14 22:56:41 2021 +0000 |
tree | 9dd219ea0595ea141ca04a576fdf2f7c2de70f50 | |
parent | b772c12c884aa2b86b366575ddfe354fb1f1eca1 [diff] | |
parent | 074a1b2411d4411a0d5d8129d741725fc9cc3929 [diff] |
Make available to com.android.compos apex am: 074a1b2411 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/bitflags/+/1706887 Change-Id: I5d6a813e1f575a4f82df256ab55bba054a6575d4
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.