commit | ebe4634e97e6b069c4ad3f83dc3bee7ec10feccc | [log] [tgz] |
---|---|---|
author | Bob Badour <bbadour@google.com> | Thu Mar 26 03:45:33 2020 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Thu Mar 26 03:45:33 2020 +0000 |
tree | 9b8269416e5f3138d7f6218c1e99b8b6b47ce597 | |
parent | 89f63b04089074f76aadd75e32eed5577d5d4602 [diff] | |
parent | 5d4dcf852cb4a6c348e8f65d84beb8ada1cec8c4 [diff] |
Remove redundant NOTICE symbolic link. am: 5d4dcf852c Change-Id: I7f44884ed51c2518a0a5cccf3e4a21d29b8a255a
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.