[package]
edition = "2021"
rust-version = "1.71"
name = "enumset"
version = "1.1.11"
authors = ["Alissa Rao <aura@aura.moe>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A library for creating compact sets of enums."
documentation = "https://docs.rs/enumset/"
readme = "README.md"
keywords = [
"enum",
"bitset",
"flags",
"bitflags",
]
categories = ["data-structures"]
license = "MIT/Apache-2.0"
repository = "https://github.com/Lymia/enumset"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[badges.maintenance]
status = "actively-developed"
[badges.travis-ci]
branch = "master"
repository = "Lymia/enumset"
[features]
alloc = []
proc-macro-crate = ["enumset_derive/proc-macro-crate"]
serde2 = ["enumset_derive/serde2_deprecation_warning"]
std = [
"alloc",
"enumset_derive/proc-macro-crate",
"enumset_derive/std_deprecation_warning",
]
[lib]
name = "enumset"
path = "src/lib.rs"
[dependencies.defmt]
version = "1"
optional = true
[dependencies.enumset_derive]
version = "0.15.0"
[dependencies.serde]
version = "1"
features = ["derive"]
optional = true