[package] name = "enum-extract-macro" description = "A derive macro for extracting enum variants into their own types." version.workspace = true authors.workspace = true edition.workspace = true license.workspace = true readme.workspace = true homepage.workspace = true repository.workspace = true categories.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [lib] proc-macro = true [dependencies] heck = "0.4.1" proc-macro2 = "1.0.71" quote = "1.0.33" syn = { version = "2.0.43", features = ["full"] } enum-extract-error = { path = "../enum-extract-error", version = "0.1.0" }