1
0
mirror of https://github.com/danog/strum.git synced 2024-11-27 04:24:37 +01:00
strum/strum_macros/Cargo.toml

43 lines
1.1 KiB
TOML
Raw Normal View History

[package]
name = "strum_macros"
2020-11-21 21:13:44 +01:00
version = "0.20.1"
edition = "2018"
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"
repository = "https://github.com/Peternator7/strum"
2017-02-12 08:03:42 +01:00
readme = "../README.md"
[lib]
proc-macro = true
name = "strum_macros"
[dependencies]
heck = "0.3"
proc-macro2 = "1.0"
quote = "1.0"
syn = { version = "1.0", features = ["parsing", "extra-traits"] }
[dev-dependencies]
2020-11-21 21:13:44 +01:00
strum = "0.20"
[features]
verbose-enumstring-name = []
verbose-asrefstr-name = []
verbose-variant-names = []
verbose-asstaticstr-name = []
verbose-intostaticstr-name = []
verbose-tostring-name = []
verbose-display-name = []
verbose-enumiter-name = []
verbose-enummessage-name = []
verbose-enumproperty-name = []
verbose-enumdiscriminants-name = []
verbose-enumcount-name = []