commit | d222232a3677ddc88887736971185773813f3ccd | [log] [tgz] |
---|---|---|
author | Chih-Hung Hsieh <chh@google.com> | Mon Apr 06 20:54:25 2020 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Mon Apr 06 20:54:25 2020 +0000 |
tree | e2194b72b4c4ba45cd8b417b476d3065d80ea9f9 | |
parent | 679c7766044819f2866e8d3e7fd0e5c45e24e468 [diff] | |
parent | dc003d36bfde662ba482eeaa77f62ffc7a62c7c9 [diff] |
Add OWNERS to bitflags am: 06ed1d57a3 am: dc003d36bf Change-Id: I38ba08dbb1b91d59d84d1eac1b1066fcf1e35843
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.