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