21 lines
371 B
TOML
21 lines
371 B
TOML
[package]
|
|
name = "config_proc_macro"
|
|
version = "0.1.0"
|
|
authors = ["topecongiro <seuchida@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
proc-macro2 = "0.4"
|
|
quote = "0.6"
|
|
syn = { version = "0.15", features = ["full", "visit"] }
|
|
|
|
[dev-dependencies]
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
[features]
|
|
default = []
|
|
debug-with-rustfmt = []
|