1 | [package] |
2 | name = "strum_macros" |
3 | version = "0.26.2" |
4 | edition = "2018" |
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 | |
17 | [lib] |
18 | proc-macro = true |
19 | name = "strum_macros" |
20 | |
21 | [dependencies] |
22 | heck = "0.4.1" |
23 | proc-macro2 = "1.0" |
24 | quote = "1.0" |
25 | rustversion = "1.0" |
26 | syn = { version = "2.0" , features = ["parsing" , "extra-traits" ] } |
27 | |
28 | [dev-dependencies] |
29 | strum = { path = "../strum" , version= "0.26" } |
30 | |