[package]
edition = "2021"
name = "enum_stringify"
version = "0.6.5"
authors = ["Yago Iglesias Vazquez <yago@yagoiglesias.fr>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Macro to generate string conversion functions for enums"
homepage = "https://github.com/Yag000/enum_stringify"
documentation = "https://docs.rs/enum_stringify"
readme = "README.md"
keywords = [
"enum",
"string",
"derive",
"macro",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Yag000/enum_stringify"
[lib]
name = "enum_stringify"
path = "src/lib.rs"
proc-macro = true
[[test]]
name = "all"
path = "tests/all.rs"
[[test]]
name = "attributes"
path = "tests/attributes.rs"
[[test]]
name = "basic"
path = "tests/basic.rs"
[[test]]
name = "case"
path = "tests/case.rs"
[[test]]
name = "compatibility"
path = "tests/compatibility.rs"
[[test]]
name = "rename"
path = "tests/rename.rs"
[dependencies.convert_case]
version = "0.6.0"
[dependencies.proc-macro2]
version = "1.0.82"
[dependencies.quote]
version = "1.0.36"
[dependencies.syn]
version = "2.0.63"
[dev-dependencies.serde]
version = "1.0.202"
features = ["derive"]