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