commit | 04265b7097189eabda48f8dc480f5b20b34231c4 | [log] [tgz] |
---|---|---|
author | Chih-Hung Hsieh <[email protected]> | Mon Oct 12 00:50:53 2020 -0700 |
committer | Chih-Hung Hsieh <[email protected]> | Mon Oct 12 00:50:53 2020 -0700 |
tree | 16e8ff657bf8c34859848a69906d50a3a0de95be | |
parent | 506efc2ebd93eb89c3fcf36b3b29463bdd52b58c [diff] |
Copy description from Cargo.toml to METADATA Test: make Change-Id: Ibc3bb790788314501475c42b75f7033f03d85aa8
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.