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