e9038b8842
Since RFC 3052 soft deprecated the authors field anyway, hiding it from crates.io, docs.rs, and making Cargo not add it by default, and it is not generally up to date/useful information, we should remove it from crates in this repo.
24 lines
533 B
TOML
24 lines
533 B
TOML
[package]
|
|
name = "rustfmt-config_proc_macro"
|
|
version = "0.2.0"
|
|
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"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
proc-macro2 = "1.0"
|
|
quote = "1.0"
|
|
syn = { version = "1.0", features = ["full", "visit"] }
|
|
|
|
[dev-dependencies]
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
[features]
|
|
default = []
|
|
debug-with-rustfmt = []
|