abrasion/third_party/cargo/vendor/bitflags-1.2.1
q3k 4a50bbf00d third_party/cargo: re-raze, fix winapi for windows 2021-05-03 23:43:36 +02: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 third_party/cargo: re-raze, fix winapi for windows 2021-05-03 23:43:36 +02: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.