[package]
edition = "2024"
name = "enum-info"
version = "1.0.0"
authors = ["Calin Baenen <calinbaenen@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A crate to generate enum impls which can list basic info about an enum."
readme = "README.md"
keywords = [
"enum",
"variants",
"counting",
"macro",
]
categories = ["rust-patterns"]
license-file = "licence.md"
repository = "https://github.com/CalinZBaenen/enum-info"
[lib]
name = "enum_info"
crate-type = ["proc-macro"]
path = "src/lib.rs"
proc-macro = true
[[test]]
name = "ambiguous"
path = "tests/ambiguous.rs"
[[test]]
name = "attributes"
path = "tests/attributes.rs"
[[test]]
name = "consts"
path = "tests/consts.rs"
[[test]]
name = "contains_fn"
path = "tests/contains_fn.rs"
[[test]]
name = "cow"
path = "tests/cow.rs"
[[test]]
name = "dimensions"
path = "tests/dimensions.rs"
[[test]]
name = "doc_comments"
path = "tests/doc_comments.rs"
[[test]]
name = "http"
path = "tests/http.rs"
[[test]]
name = "karting"
path = "tests/karting.rs"
[[test]]
name = "one_or_many"
path = "tests/one_or_many.rs"
[[test]]
name = "option"
path = "tests/option.rs"
[[test]]
name = "test_conglom"
path = "tests/test_conglom.rs"