abrasion/third_party/cargo/vendor/bitflags-1.2.1
q3k 08f6dc3ac5 Bump to rust 1.49 and new cargo-raze 2021-01-07 22:48:22 +00:00
..
src vendor all the shit. 2020-01-19 00:27:25 +01:00
.cargo-checksum.json vendor all the shit. 2020-01-19 00:27:25 +01:00
BUILD.bazel Bump to rust 1.49 and new cargo-raze 2021-01-07 22:48:22 +00:00
CHANGELOG.md vendor all the shit. 2020-01-19 00:27:25 +01:00
CODE_OF_CONDUCT.md vendor all the shit. 2020-01-19 00:27:25 +01:00
Cargo.toml vendor all the shit. 2020-01-19 00:27:25 +01:00
LICENSE-APACHE vendor all the shit. 2020-01-19 00:27:25 +01:00
LICENSE-MIT vendor all the shit. 2020-01-19 00:27:25 +01:00
README.md vendor all the shit. 2020-01-19 00:27:25 +01:00
build.rs vendor all the shit. 2020-01-19 00:27:25 +01:00

README.md

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.