enum-helper 0.1.0

Yet another enum helper. Macros that generate common boilerplate for enums.
Documentation
# 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 = "2024"
rust-version = "1.85"
name = "enum-helper"
version = "0.1.0"
authors = ["uima <git@uimataso.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Yet another enum helper. Macros that generate common boilerplate for enums."
documentation = "https://docs.rs/enum-helper"
readme = "README.md"
keywords = [
    "enum",
    "macros",
    "proc-macros",
    "derive",
]
categories = ["development-tools::procedural-macro-helpers"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/uimataso/enum-helper"

[features]
default = ["derive"]
derive = ["dep:enum-helper-derive"]

[lib]
name = "enum_helper"
path = "src/lib.rs"

[[test]]
name = "enum_all"
path = "tests/enum_all.rs"

[[test]]
name = "enum_kind"
path = "tests/enum_kind.rs"

[[test]]
name = "enum_kind_vis"
path = "tests/enum_kind_vis.rs"

[[test]]
name = "enum_str"
path = "tests/enum_str.rs"

[[test]]
name = "enum_str_bring_your_own_error"
path = "tests/enum_str_bring_your_own_error.rs"

[[test]]
name = "enum_str_error_msg"
path = "tests/enum_str_error_msg.rs"

[[test]]
name = "enum_str_no_gen"
path = "tests/enum_str_no_gen.rs"

[[test]]
name = "enum_str_rename"
path = "tests/enum_str_rename.rs"

[[test]]
name = "enum_str_vis"
path = "tests/enum_str_vis.rs"

[[test]]
name = "ui"
path = "tests/ui.rs"

[dependencies.enum-helper-derive]
version = "0.1.0"
optional = true

[dev-dependencies.assert2]
version = "0.4"

[dev-dependencies.trybuild]
version = "1.0"