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