2019-03-31 04:42:49 -05:00
|
|
|
[package]
|
2019-06-09 08:29:36 -05:00
|
|
|
name = "rustfmt-config_proc_macro"
|
2023-01-24 14:16:03 -06:00
|
|
|
version = "0.3.0"
|
2019-03-31 04:42:49 -05:00
|
|
|
edition = "2018"
|
2019-06-09 08:29:36 -05:00
|
|
|
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"
|
2023-06-19 23:13:56 -05:00
|
|
|
syn = { version = "2.0", features = ["full", "visit"] }
|
2019-03-31 04:42:49 -05:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-06-19 23:13:56 -05:00
|
|
|
serde = { version = "1.0.160", features = ["derive"] }
|
2019-03-31 04:42:49 -05:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
debug-with-rustfmt = []
|