Go to file
Ashley Mannix 4880a76911
Merge pull request #188 from drmikehenry/unknown
Add support for "unknown" bits.
2019-09-23 13:18:23 +10:00
src Adjust pull request based on feedback: 2019-08-03 09:11:18 -04:00
test_suite Use compiletest_rs flags supported by stable toolchain, and fixed it's version in place. 2019-01-26 10:20:34 +02:00
.gitignore Use compiletest_rs flags supported by stable toolchain, and fixed it's version in place. 2019-01-26 10:20:34 +02:00
.travis.yml Use compiletest_rs flags supported by stable toolchain, and fixed it's version in place. 2019-01-26 10:20:34 +02:00
bors.toml Update bors.toml 2018-05-31 22:45:21 +05:30
build.rs const functions 2019-04-23 11:50:28 +02:00
Cargo.toml prepare for 1.1.0 release 2019-06-06 09:48:16 +10:00
CHANGELOG.md prepare for 1.1.0 release 2019-06-06 09:48:16 +10:00
CODE_OF_CONDUCT.md add code of conduct (#160) 2018-05-31 15:09:56 +05:30
LICENSE-APACHE Initial commit 2015-01-15 00:32:45 -08:00
LICENSE-MIT Initial commit 2015-01-15 00:32:45 -08:00
README.md add badges like rand crate 2018-06-30 21:56:53 -07:00

bitflags

Build Status Join the chat at https://gitter.im/bitflags/Lobby Latest version Documentation Minimum rustc version License

A Rust macro to generate structures which behave like a set of bitflags

Usage

Add this to your Cargo.toml:

[dependencies]
bitflags = "1.0"

and this to your crate root:

#[macro_use]
extern crate bitflags;

Rust Version Support

The minimum supported Rust version is 1.20 due to use of associated constants.