| 1 | [package] |
| 2 | name = "strum_macros" |
| 3 | version = "0.27.1" |
| 4 | edition = "2021" |
| 5 | authors = ["Peter Glotfelty <peter.glotfelty@microsoft.com>" ] |
| 6 | license = "MIT" |
| 7 | |
| 8 | description = "Helpful macros for working with enums and strings" |
| 9 | keywords = ["enum" , "string" , "macros" , "proc-macros" ] |
| 10 | categories = ["development-tools::procedural-macro-helpers" , "parsing" ] |
| 11 | |
| 12 | documentation = "https://docs.rs/strum" |
| 13 | homepage = "https://github.com/Peternator7/strum" |
| 14 | repository = "https://github.com/Peternator7/strum" |
| 15 | readme = "../README.md" |
| 16 | rust-version = "1.66.1" |
| 17 | |
| 18 | [lib] |
| 19 | proc-macro = true |
| 20 | name = "strum_macros" |
| 21 | |
| 22 | [dependencies] |
| 23 | heck = "0.5.0" |
| 24 | proc-macro2 = "1.0" |
| 25 | quote = "1.0" |
| 26 | rustversion = "1.0" |
| 27 | syn = { version = "2.0" , features = ["parsing" ] } |
| 28 | |
| 29 | [dev-dependencies] |
| 30 | strum = { path = "../strum" } |
| 31 | |