]> git.lizzy.rs Git - rust.git/blob - src/tools/rustfmt/config_proc_macro/Cargo.toml
Auto merge of #106812 - oli-obk:output_filenames, r=petrochenkov
[rust.git] / src / tools / rustfmt / config_proc_macro / Cargo.toml
1 [package]
2 name = "rustfmt-config_proc_macro"
3 version = "0.3.0"
4 edition = "2018"
5 description = "A collection of procedural macros for rustfmt"
6 license = "Apache-2.0/MIT"
7 categories = ["development-tools::procedural-macro-helpers"]
8 repository = "https://github.com/rust-lang/rustfmt"
9
10 [lib]
11 proc-macro = true
12
13 [dependencies]
14 proc-macro2 = "1.0"
15 quote = "1.0"
16 syn = { version = "1.0", features = ["full", "visit"] }
17
18 [dev-dependencies]
19 serde = { version = "1.0", features = ["derive"] }
20
21 [features]
22 default = []
23 debug-with-rustfmt = []