commit | a755719edc3636b167598f06d4715f9bb582b0f2 | [log] [tgz] |
---|---|---|
author | Peter Todd <[email protected]> | Wed Jan 01 04:02:36 2020 -0500 |
committer | Dylan DPC <[email protected]> | Wed Jan 01 14:32:36 2020 +0530 |
tree | 01122065e89319ca04ce35f3decdb9a82079be19 | |
parent | 45a4703f5eac3f01a189b1fe64552607a5eeec5e [diff] |
Fix typo (#206)
A Rust macro to generate structures which behave like a set of bitflags
Add this to your Cargo.toml
:
[dependencies] bitflags = "1.2"
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.