diff options
| author | bors <bors@rust-lang.org> | 2021-03-09 18:42:09 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2021-03-09 18:42:09 +0000 |
| commit | fb27517e01e34acf21bbf6273822169f54a53987 (patch) | |
| tree | 4eb904a7d1c9400acfefdf8b197dcdd7d1465dff | |
| parent | 2b781c97b23fb0021a9672dfb5e4f2a4b247c91d (diff) | |
| parent | 8e1ce480b9d4a56e77a3c2f458dacd3c051f5f47 (diff) | |
| download | rust-fb27517e01e34acf21bbf6273822169f54a53987.tar.gz rust-fb27517e01e34acf21bbf6273822169f54a53987.zip | |
Auto merge of #6878 - flip1995:authors, r=Manishearth
Set Clippy authors to "The Rust Clippy Developers" Clippy has grown enough, that putting specific people in the "authors" field isn't warranted anymore. As a heads-up: `@Manishearth` `@llogiq` `@birkenfeld` `@mcarton` `@oli-obk` `@phansch` `@matthiaskrgr` your names will be removed from one or more of the `Cargo.toml` files of Clippy. This of course does not mean that we value your previous work on Clippy any less :heart: As per our discussion in today's meeting: https://rust-lang.zulipchat.com/#narrow/stream/257328-clippy/topic/Meeting.202021-03-09/near/229502514 changelog: none
| -rw-r--r-- | Cargo.toml | 8 | ||||
| -rw-r--r-- | clippy_dev/Cargo.toml | 3 | ||||
| -rw-r--r-- | clippy_dummy/Cargo.toml | 2 | ||||
| -rw-r--r-- | clippy_lints/Cargo.toml | 7 | ||||
| -rw-r--r-- | mini-macro/Cargo.toml | 8 | ||||
| -rw-r--r-- | rustc_tools_util/Cargo.toml | 2 |
6 files changed, 6 insertions, 24 deletions
diff --git a/Cargo.toml b/Cargo.toml index a6d0c16fd3a..2b9488de289 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,13 +1,7 @@ [package] name = "clippy" version = "0.1.52" -authors = [ - "Manish Goregaokar <manishsmail@gmail.com>", - "Andre Bogus <bogusandre@gmail.com>", - "Georg Brandl <georg@python.org>", - "Martin Carton <cartonmartin@gmail.com>", - "Oliver Schneider <clippy-iethah7aipeen8neex1a@oli-obk.de>" -] +authors = ["The Rust Clippy Developers"] description = "A bunch of helpful lints to avoid common pitfalls in Rust" repository = "https://github.com/rust-lang/rust-clippy" readme = "README.md" diff --git a/clippy_dev/Cargo.toml b/clippy_dev/Cargo.toml index ebf157b80ac..5cfd5056f58 100644 --- a/clippy_dev/Cargo.toml +++ b/clippy_dev/Cargo.toml @@ -1,10 +1,9 @@ [package] name = "clippy_dev" version = "0.0.1" -authors = ["Philipp Hansch <dev@phansch.net>"] +authors = ["The Rust Clippy Developers"] edition = "2018" - [dependencies] bytecount = "0.6" clap = "2.33" diff --git a/clippy_dummy/Cargo.toml b/clippy_dummy/Cargo.toml index 7b11795fafd..6959de7ffee 100644 --- a/clippy_dummy/Cargo.toml +++ b/clippy_dummy/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "clippy_dummy" # rename to clippy before publishing version = "0.0.303" -authors = ["Manish Goregaokar <manishsmail@gmail.com>"] +authors = ["The Rust Clippy Developers"] edition = "2018" readme = "crates-readme.md" description = "A bunch of helpful lints to avoid common pitfalls in Rust." diff --git a/clippy_lints/Cargo.toml b/clippy_lints/Cargo.toml index ff4cf527ec4..6bd6c079276 100644 --- a/clippy_lints/Cargo.toml +++ b/clippy_lints/Cargo.toml @@ -3,12 +3,7 @@ name = "clippy_lints" # begin automatic update version = "0.1.52" # end automatic update -authors = [ - "Manish Goregaokar <manishsmail@gmail.com>", - "Andre Bogus <bogusandre@gmail.com>", - "Georg Brandl <georg@python.org>", - "Martin Carton <cartonmartin@gmail.com>", -] +authors = ["The Rust Clippy Developers"] description = "A bunch of helpful lints to avoid common pitfalls in Rust" repository = "https://github.com/rust-lang/rust-clippy" readme = "README.md" diff --git a/mini-macro/Cargo.toml b/mini-macro/Cargo.toml index 75ab17588a7..0d95c86aef0 100644 --- a/mini-macro/Cargo.toml +++ b/mini-macro/Cargo.toml @@ -1,13 +1,7 @@ [package] name = "clippy-mini-macro-test" version = "0.2.0" -authors = [ - "Manish Goregaokar <manishsmail@gmail.com>", - "Andre Bogus <bogusandre@gmail.com>", - "Georg Brandl <georg@python.org>", - "Martin Carton <cartonmartin@gmail.com>", - "Oliver Schneider <clippy-iethah7aipeen8neex1a@oli-obk.de>" -] +authors = ["The Rust Clippy Developers"] license = "MIT OR Apache-2.0" description = "A macro to test clippy's procedural macro checks" repository = "https://github.com/rust-lang/rust-clippy" diff --git a/rustc_tools_util/Cargo.toml b/rustc_tools_util/Cargo.toml index 6f0fc5bee8f..2972bc6d51c 100644 --- a/rustc_tools_util/Cargo.toml +++ b/rustc_tools_util/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "rustc_tools_util" version = "0.2.0" -authors = ["Matthias Krüger <matthias.krueger@famsik.de>"] +authors = ["The Rust Clippy Developers"] description = "small helper to generate version information for git packages" repository = "https://github.com/rust-lang/rust-clippy" readme = "README.md" |
