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