variant-builder-macro 0.3.0

This crate gives us the VariantBuider proc macro which can be used to streamline creting an enum from wrapping variants each using the builder pattern.
Documentation
[dependencies.convert_case]
version = "0.4"

[dependencies.derive_builder]
version = "0.20.2"

[dependencies.proc-macro2]
version = "1.0.92"

[dependencies.quote]
version = "1.0"

[dependencies.syn]
features = ["full"]
version = "2.0"

[dependencies.traced-test]
version = "1.0.3"

[dependencies.tracing]
version = "0.1.40"

[dependencies.tracing-setup]
version = "1.0.3"

[lib]
name = "variant_builder_macro"
path = "src/lib.rs"
proc-macro = true

[package]
authors = ["klebs tpk3.mx@gmail.com"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["development-tools"]
description = "This crate gives us the VariantBuider proc macro which can be used to streamline creting an enum from wrapping variants each using the builder pattern."
edition = "2021"
keywords = ["macros", "builder", "shorthand", "enum", "reuse"]
license = "MIT"
name = "variant-builder-macro"
readme = "README.md"
repository = "https://github.com/klebs6/klebs-general"
version = "0.3.0"

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

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

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