[package] name = "enum2str" version = "0.1.11" authors = ["Matthew Berger "] description = """ enum2str is a rust derive macro that creates a Display impl for enums. This is useful for strongly typing composable sets of strings. """ homepage = "https://github.com/matthewjberger/enum2str" repository = "https://github.com/matthewjberger/enum2str" keywords = ["enum", "macro", "string"] license = "MIT" edition = "2021" [lib] proc-macro = true [dependencies] proc-macro2 = "1.0" quote = "1.0" syn = "1.0"