commit | 4d395886b5f0fc7abfeaa65a79b62c3da98fbe34 | [log] [tgz] |
---|---|---|
author | Bob Badour <[email protected]> | Tue Feb 16 22:08:34 2021 +0000 |
committer | Automerger Merge Worker <[email protected]> | Tue Feb 16 22:08:34 2021 +0000 |
tree | b8100f2cefdf43e4d3f8650d7325c1ca8e956c01 | |
parent | 7546f8a023752d162427156a49a62ffbad79e398 [diff] | |
parent | b448e75d51115501f98a56e07e94a98a967cd7ae [diff] |
[LSC] Add LOCAL_LICENSE_KINDS to external/rust/crates/bitflags am: fafb6f12e8 am: f401304cb2 am: b448e75d51 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/bitflags/+/1588712 MUST ONLY BE SUBMITTED BY AUTOMERGER Change-Id: I937456895af255fe9f5c1fa8746d9f018a7edf8a
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.