-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (22 loc) · 754 Bytes
/
Cargo.toml
File metadata and controls
28 lines (22 loc) · 754 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[package]
name = "enum_stringify"
version = "0.6.4"
edition = "2021"
description = "Macro to generate string conversion functions for enums"
authors = ["Yago Iglesias Vazquez <yago@yagoiglesias.fr>"]
readme = "README.md"
license = "MIT OR Apache-2.0"
homepage = "https://github.com/Yag000/enum_stringify"
repository = "https://github.com/Yag000/enum_stringify"
documentation = "https://docs.rs/enum_stringify"
keywords = ["enum", "string", "derive", "macro"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
proc-macro = true
[dependencies]
proc-macro2 = "1.0.82"
quote = "1.0.36"
syn = "2.0.63"
convert_case = "0.6.0"
[dev-dependencies]
serde = { version = "1.0.202", features = ["derive"] }