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