commit | f9c300de26bddd15abcbf12dc0d30385017a2611 | [log] [tgz] |
---|---|---|
author | Joel Galenson <[email protected]> | Wed Sep 22 14:30:25 2021 -0700 |
committer | Joel Galenson <[email protected]> | Wed Sep 22 14:34:27 2021 -0700 |
tree | b2594e1fc7ab61aee60e80ead080e1eef8e6e147 | |
parent | 5f44c8c983e8aeede343082cc8f004002811059e [diff] |
Upgrade rust/crates/bitflags to 1.3.2 Test: make Change-Id: I3f6842fc0ca1ef3490bcc0f3f5790d5f025c34b5
A Rust macro to generate structures which behave like a set of bitflags
Add this to your Cargo.toml
:
[dependencies] bitflags = "1.3"
and this to your source code:
use bitflags::bitflags;
The minimum supported Rust version is 1.46 due to use of associated constants and const functions.