rust/config_proc_macro/Cargo.toml

24 lines
533 B
TOML
Raw Normal View History

2019-03-31 04:42:49 -05:00
[package]
name = "rustfmt-config_proc_macro"
2019-09-08 09:33:21 -05:00
version = "0.2.0"
2019-03-31 04:42:49 -05:00
edition = "2018"
description = "A collection of procedural macros for rustfmt"
license = "Apache-2.0/MIT"
categories = ["development-tools::procedural-macro-helpers"]
repository = "https://github.com/rust-lang/rustfmt"
2019-03-31 04:42:49 -05:00
[lib]
proc-macro = true
[dependencies]
2019-09-08 09:33:21 -05:00
proc-macro2 = "1.0"
quote = "1.0"
syn = { version = "1.0", features = ["full", "visit"] }
2019-03-31 04:42:49 -05:00
[dev-dependencies]
serde = { version = "1.0", features = ["derive"] }
[features]
default = []
debug-with-rustfmt = []