rust/config_proc_macro/Cargo.toml

24 lines
540 B
TOML
Raw Normal View History

2019-03-31 04:42:49 -05:00
[package]
name = "rustfmt-config_proc_macro"
version = "0.3.0"
2019-03-31 04:42:49 -05:00
edition = "2018"
description = "A collection of procedural macros for rustfmt"
license = "Apache-2.0 OR 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 = "2.0", features = ["full", "visit"] }
2019-03-31 04:42:49 -05:00
[dev-dependencies]
serde = { version = "1.0.160", features = ["derive"] }
2019-03-31 04:42:49 -05:00
[features]
default = []
debug-with-rustfmt = []