[package] name = "enum-tags" version = "0.1.0" edition = "2021" repository = "https://github.com/DenverLacey/enum-tags" reamdme = "README.md" exclude = ["./tests/"] description = "A Derive-Macro library that generates a companion tag-enum for any enum so that variants can be referred to without specifying fields." license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] enum-tags-macros = { version = "0.1.0", path = "./libs/macros" } enum-tags-traits = { version = "0.1.0", path = "./libs/traits" }