[package]
name = "bitflag-attr"
authors = ["GrayJack <gr41.j4ck@gmail.com>"]
version = "0.8.1"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "A macro to generate bitflags structures from C-like enums"
keywords = ["bit", "bitmask", "bitflags", "flags"]
categories = ["no-std"]
repository = "https://github.com/GrayJack/bitflag-attr"
homepage = "https://github.com/GrayJack/bitflag-attr"
rust-version = "1.75.0"
exclude = ["/tests", "/.github"]
[dependencies]
bitflags-attr-macros = { version = "=0.8.1", path = "bitflags-attr-macros" }
[[test]]
name = "tests"
path = "tests/progress.rs"
[[test]]
name = "generated_api_tests"
path = "tests/api.rs"
[[example]]
name = "serde"
required-features = ["serde"]
[dev-dependencies]
trybuild = "1.0"
serde = "1.0"
[features]
default = []
std = []
serde = ["bitflags-attr-macros/serde"]
custom-types = ["bitflags-attr-macros/custom-types"]
const-mut-ref = ["bitflags-attr-macros/const-mut-ref"]
[workspace]
members = ["bitflags-attr-macros"]