• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

patches/25-Apr-2025-2822

src/25-Apr-2025-1,7461,062

tests/25-Apr-2025-584461

.cargo-checksum.jsonD25-Apr-20253.5 KiB11

Android.bpD25-Apr-20251.9 KiB8478

CHANGELOG.mdD25-Apr-20256.4 KiB207135

CODE_OF_CONDUCT.mdD25-Apr-20253.1 KiB7355

Cargo.tomlD25-Apr-20251.6 KiB6051

LICENSED25-Apr-202510.6 KiB202169

LICENSE-APACHED25-Apr-202510.6 KiB202169

LICENSE-MITD25-Apr-20251 KiB2622

METADATAD25-Apr-2025398 1817

MODULE_LICENSE_APACHE2D25-Apr-20250

README.mdD25-Apr-20251,023 3322

TEST_MAPPINGD25-Apr-20251.9 KiB9493

cargo_embargo.jsonD25-Apr-2025524 2221

README.md

1bitflags
2========
3
4[![Rust](https://github.com/bitflags/bitflags/workflows/Rust/badge.svg)](https://github.com/bitflags/bitflags/actions)
5[![Join the chat at https://gitter.im/bitflags/Lobby](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/bitflags/Lobby?utm_source=badge&utm_medium=badge&utm_content=badge)
6[![Latest version](https://img.shields.io/crates/v/bitflags.svg)](https://crates.io/crates/bitflags)
7[![Documentation](https://docs.rs/bitflags/badge.svg)](https://docs.rs/bitflags)
8![License](https://img.shields.io/crates/l/bitflags.svg)
9
10A Rust macro to generate structures which behave like a set of bitflags
11
12- [Documentation](https://docs.rs/bitflags)
13- [Release notes](https://github.com/bitflags/bitflags/releases)
14
15## Usage
16
17Add this to your `Cargo.toml`:
18
19```toml
20[dependencies]
21bitflags = "1.3"
22```
23
24and this to your source code:
25
26```rust
27use bitflags::bitflags;
28```
29
30## Rust Version Support
31
32The minimum supported Rust version is 1.46 due to use of associated constants and const functions.
33