mirror of
https://github.com/danog/strum.git
synced 2024-11-27 04:24:37 +01:00
30 lines
738 B
TOML
30 lines
738 B
TOML
[package]
|
|
name = "strum_macros"
|
|
version = "0.23.0"
|
|
edition = "2018"
|
|
authors = ["Peter Glotfelty <peter.glotfelty@microsoft.com>"]
|
|
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"
|
|
readme = "../README.md"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
name = "strum_macros"
|
|
|
|
[dependencies]
|
|
heck = "0.3"
|
|
proc-macro2 = "1.0"
|
|
quote = "1.0"
|
|
rustversion = "1.0"
|
|
syn = { version = "1.0", features = ["parsing", "extra-traits"] }
|
|
|
|
[dev-dependencies]
|
|
strum = "0.20"
|