aboutsummaryrefslogtreecommitdiff
path: root/vendor/bitflags-1.3.2/README.md
diff options
context:
space:
mode:
authorValentin Popov <valentin@popov.link>2024-07-19 15:37:58 +0300
committerValentin Popov <valentin@popov.link>2024-07-19 15:37:58 +0300
commita990de90fe41456a23e58bd087d2f107d321f3a1 (patch)
tree15afc392522a9e85dc3332235e311b7d39352ea9 /vendor/bitflags-1.3.2/README.md
parent3d48cd3f81164bbfc1a755dc1d4a9a02f98c8ddd (diff)
downloadfparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.tar.xz
fparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.zip
Deleted vendor folder
Diffstat (limited to 'vendor/bitflags-1.3.2/README.md')
-rw-r--r--vendor/bitflags-1.3.2/README.md32
1 files changed, 0 insertions, 32 deletions
diff --git a/vendor/bitflags-1.3.2/README.md b/vendor/bitflags-1.3.2/README.md
deleted file mode 100644
index 0da0f85..0000000
--- a/vendor/bitflags-1.3.2/README.md
+++ /dev/null
@@ -1,32 +0,0 @@
-bitflags
-========
-
-[![Rust](https://github.com/bitflags/bitflags/workflows/Rust/badge.svg)](https://github.com/bitflags/bitflags/actions)
-[![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)
-[![Latest version](https://img.shields.io/crates/v/bitflags.svg)](https://crates.io/crates/bitflags)
-[![Documentation](https://docs.rs/bitflags/badge.svg)](https://docs.rs/bitflags)
-![License](https://img.shields.io/crates/l/bitflags.svg)
-
-A Rust macro to generate structures which behave like a set of bitflags
-
-- [Documentation](https://docs.rs/bitflags)
-- [Release notes](https://github.com/bitflags/bitflags/releases)
-
-## Usage
-
-Add this to your `Cargo.toml`:
-
-```toml
-[dependencies]
-bitflags = "1.3"
-```
-
-and this to your source code:
-
-```rust
-use bitflags::bitflags;
-```
-
-## Rust Version Support
-
-The minimum supported Rust version is 1.46 due to use of associated constants and const functions.