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
740 B
TOML
Raw Normal View History

[package]
name = "strum_macros"
2023-07-03 22:49:32 +02:00
version = "0.25.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]
2023-03-12 22:48:07 +01:00
heck = "0.4.1"
proc-macro2 = "1.0"
quote = "1.0"
rustversion = "1.0"
2023-06-18 02:57:26 +02:00
syn = { version = "2.0", features = ["parsing", "extra-traits"] }
[dev-dependencies]
2023-07-03 22:49:32 +02:00
strum = "0.25"