commit | 7255afafd60f99ef71fb8faff21ac07b2b7dcc47 | [log] [tgz] |
---|---|---|
author | Bob Badour <[email protected]> | Thu Apr 23 15:43:03 2020 -0700 |
committer | Bob Badour <[email protected]> | Thu Apr 23 15:43:03 2020 -0700 |
tree | 5d3077baca3f524419d19f2fd5153c1babebe131 | |
parent | 06ed1d57a3e0518facd0bf721e728e7cf032d4dd [diff] |
Add license type: Apache2+MIT are NOTICE licenses Bug: 68860345 Bug: 69058154 Bug: 151953481 Test: no code changes Change-Id: I3dfca54d01034fe8c4e8304ed8abc49ad8dad521
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.