2017-02-05 03:52:48 +01:00
|
|
|
[package]
|
|
|
|
name = "strum_macros"
|
2020-11-21 21:13:44 +01:00
|
|
|
version = "0.20.1"
|
2020-09-17 20:21:21 +02:00
|
|
|
edition = "2018"
|
2019-09-18 20:24:14 +02:00
|
|
|
authors = ["Peter Glotfelty <peter.glotfelty@microsoft.com>"]
|
2017-02-12 08:03:42 +01:00
|
|
|
license = "MIT"
|
|
|
|
|
|
|
|
description = "Helpful macros for working with enums and strings"
|
|
|
|
keywords = ["enum", "string", "macros", "proc-macros"]
|
|
|
|
categories = ["development-tools::procedural-macro-helpers", "parsing"]
|
|
|
|
|
|
|
|
documentation = "https://docs.rs/strum"
|
|
|
|
homepage = "https://github.com/Peternator7/strum"
|
2020-07-29 18:36:48 +02:00
|
|
|
repository = "https://github.com/Peternator7/strum"
|
2017-02-12 08:03:42 +01:00
|
|
|
readme = "../README.md"
|
2017-02-05 03:52:48 +01:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
2017-02-11 20:42:32 +01:00
|
|
|
name = "strum_macros"
|
2017-02-05 03:52:48 +01:00
|
|
|
|
|
|
|
[dependencies]
|
2018-09-26 21:13:45 +02:00
|
|
|
heck = "0.3"
|
2019-09-18 20:24:14 +02:00
|
|
|
proc-macro2 = "1.0"
|
|
|
|
quote = "1.0"
|
|
|
|
syn = { version = "1.0", features = ["parsing", "extra-traits"] }
|
2019-03-27 04:44:39 +01:00
|
|
|
|
2020-10-06 19:17:06 +02:00
|
|
|
[dev-dependencies]
|
2020-11-21 21:13:44 +01:00
|
|
|
strum = "0.20"
|
2020-10-06 19:17:06 +02:00
|
|
|
|
2019-03-27 04:44:39 +01:00
|
|
|
[features]
|
|
|
|
verbose-enumstring-name = []
|
|
|
|
verbose-asrefstr-name = []
|
2019-07-15 19:06:33 +02:00
|
|
|
verbose-variant-names = []
|
2019-03-27 04:44:39 +01:00
|
|
|
verbose-asstaticstr-name = []
|
|
|
|
verbose-intostaticstr-name = []
|
|
|
|
verbose-tostring-name = []
|
|
|
|
verbose-display-name = []
|
|
|
|
verbose-enumiter-name = []
|
|
|
|
verbose-enummessage-name = []
|
|
|
|
verbose-enumproperty-name = []
|
|
|
|
verbose-enumdiscriminants-name = []
|
2020-09-17 20:21:21 +02:00
|
|
|
verbose-enumcount-name = []
|