1[package]
2name = "strum"
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[dependencies]
18strum_macros = { path = "../strum_macros", optional = true, version = "0.26" }
19phf = { version = "0.10", features = ["macros"], optional = true }
20
21[dev-dependencies]
22strum_macros = { path = "../strum_macros", version = "0.26" }
23
24[badges]
25travis-ci = { repository = "Peternator7/strum" }
26
27[features]
28default = ["std"]
29derive = ["strum_macros"]
30std = []
31
32[package.metadata.docs.rs]
33features = ["derive"]
34rustdoc-args = ["--cfg", "docsrs"]
35