1
0
mirror of https://github.com/danog/strum.git synced 2024-12-02 09:27:57 +01:00
strum/strum_macros/Cargo.toml

30 lines
738 B
TOML
Raw Normal View History

[package]
name = "strum_macros"
2022-08-08 01:35:38 +02:00
version = "0.24.3"
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]
2022-01-15 21:40:14 +01:00
heck = "0.4"
proc-macro2 = "1.0"
quote = "1.0"
rustversion = "1.0"
syn = { version = "1.0", features = ["parsing", "extra-traits"] }
[dev-dependencies]
2022-04-16 21:28:10 +02:00
strum = "0.24"