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