59 lines
1.3 KiB
TOML
59 lines
1.3 KiB
TOML
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
|
|
#
|
|
# When uploading crates to the registry Cargo will automatically
|
|
# "normalize" Cargo.toml files for maximal compatibility
|
|
# with all versions of Cargo and also rewrite `path` dependencies
|
|
# to registry (e.g., crates.io) dependencies.
|
|
#
|
|
# If you are reading this file be aware that the original Cargo.toml
|
|
# will likely look very different (and much more reasonable).
|
|
# See Cargo.toml.orig for the original contents.
|
|
|
|
[package]
|
|
edition = "2021"
|
|
name = "bitmask-enum"
|
|
version = "2.2.4"
|
|
authors = ["Lukas3674 <lukashassler@web.de>"]
|
|
build = false
|
|
autobins = false
|
|
autoexamples = false
|
|
autotests = false
|
|
autobenches = false
|
|
description = "A bitmask enum attribute macro"
|
|
documentation = "https://docs.rs/bitmask-enum"
|
|
readme = "README.md"
|
|
keywords = [
|
|
"bit",
|
|
"bitmask",
|
|
"bitflags",
|
|
"flags",
|
|
"no-std",
|
|
]
|
|
categories = ["no-std"]
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/Lukas3674/rust-bitmask-enum"
|
|
|
|
[lib]
|
|
name = "bitmask_enum"
|
|
path = "src/lib.rs"
|
|
proc-macro = true
|
|
|
|
[[example]]
|
|
name = "custom"
|
|
path = "examples/custom.rs"
|
|
|
|
[[example]]
|
|
name = "simple"
|
|
path = "examples/simple.rs"
|
|
|
|
[[test]]
|
|
name = "tests"
|
|
path = "tests/tests.rs"
|
|
|
|
[dependencies.quote]
|
|
version = "1.0"
|
|
|
|
[dependencies.syn]
|
|
version = "2.0"
|
|
features = ["full"]
|