From e9038b8842263b99d8a77a9a23339e02a8c3cf79 Mon Sep 17 00:00:00 2001 From: Jade Date: Tue, 27 Jul 2021 16:38:13 -0700 Subject: [PATCH] rfc3052: Remove authors field from Cargo manifests 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. --- Cargo.toml | 1 - config_proc_macro/Cargo.toml | 1 - 2 files changed, 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3a04fb28f7c..81e3e26e8b0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,6 @@ name = "rustfmt-nightly" version = "1.4.37" -authors = ["Nicholas Cameron ", "The Rustfmt developers"] description = "Tool to find and fix Rust formatting issues" repository = "https://github.com/rust-lang/rustfmt" readme = "README.md" diff --git a/config_proc_macro/Cargo.toml b/config_proc_macro/Cargo.toml index cc995571602..a41b3a5e6bf 100644 --- a/config_proc_macro/Cargo.toml +++ b/config_proc_macro/Cargo.toml @@ -1,7 +1,6 @@ [package] name = "rustfmt-config_proc_macro" version = "0.2.0" -authors = ["topecongiro "] edition = "2018" description = "A collection of procedural macros for rustfmt" license = "Apache-2.0/MIT"