diff options
| author | bors <bors@rust-lang.org> | 2021-08-02 05:49:17 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2021-08-02 05:49:17 +0000 |
| commit | 10bb28ce738b35cb43d71d05d8ddb7999a39b337 (patch) | |
| tree | d265b8e93bf33c167301b8ffc91586886ba679c0 | |
| parent | 2f315b82afa58d825d470640ae173a5113856904 (diff) | |
| parent | 6c2199ea9f115de56849ec39b1238af678e3d9ed (diff) | |
| download | rust-10bb28ce738b35cb43d71d05d8ddb7999a39b337.tar.gz rust-10bb28ce738b35cb43d71d05d8ddb7999a39b337.zip | |
Auto merge of #87535 - lf-:authors, r=Mark-Simulacrum
rfc3052 followup: Remove authors field from Cargo manifests Since RFC 3052 soft deprecated the authors field, 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 for contributors, we may as well remove it from crates in this repo.
| -rw-r--r-- | Cargo.toml | 1 | ||||
| -rw-r--r-- | clippy_dev/Cargo.toml | 1 | ||||
| -rw-r--r-- | clippy_dummy/Cargo.toml | 1 | ||||
| -rw-r--r-- | clippy_lints/Cargo.toml | 1 | ||||
| -rw-r--r-- | clippy_utils/Cargo.toml | 1 | ||||
| -rw-r--r-- | lintcheck/Cargo.toml | 1 | ||||
| -rw-r--r-- | rustc_tools_util/Cargo.toml | 1 |
7 files changed, 0 insertions, 7 deletions
diff --git a/Cargo.toml b/Cargo.toml index 82e04c8fb85..16b6c207a5f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,6 @@ [package] name = "clippy" version = "0.1.56" -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 5c6c106e0e6..0fae8c7b9af 100644 --- a/clippy_dev/Cargo.toml +++ b/clippy_dev/Cargo.toml @@ -1,7 +1,6 @@ [package] name = "clippy_dev" version = "0.0.1" -authors = ["The Rust Clippy Developers"] edition = "2018" [dependencies] diff --git a/clippy_dummy/Cargo.toml b/clippy_dummy/Cargo.toml index 6959de7ffee..a1707bad5c2 100644 --- a/clippy_dummy/Cargo.toml +++ b/clippy_dummy/Cargo.toml @@ -1,7 +1,6 @@ [package] name = "clippy_dummy" # rename to clippy before publishing version = "0.0.303" -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 0aa5b297442..a3b92e1faa1 100644 --- a/clippy_lints/Cargo.toml +++ b/clippy_lints/Cargo.toml @@ -3,7 +3,6 @@ name = "clippy_lints" # begin automatic update version = "0.1.56" # end automatic update -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_utils/Cargo.toml b/clippy_utils/Cargo.toml index 8bd859c97ad..c65b2958ec5 100644 --- a/clippy_utils/Cargo.toml +++ b/clippy_utils/Cargo.toml @@ -1,7 +1,6 @@ [package] name = "clippy_utils" version = "0.1.56" -authors = ["The Rust Clippy Developers"] edition = "2018" publish = false diff --git a/lintcheck/Cargo.toml b/lintcheck/Cargo.toml index 8db6d28e5ac..8c33fa372ec 100644 --- a/lintcheck/Cargo.toml +++ b/lintcheck/Cargo.toml @@ -1,7 +1,6 @@ [package] name = "lintcheck" version = "0.0.1" -authors = ["The Rust Clippy Developers"] description = "tool to monitor impact of changes in Clippys lints on a part of the ecosystem" readme = "README.md" license = "MIT OR Apache-2.0" diff --git a/rustc_tools_util/Cargo.toml b/rustc_tools_util/Cargo.toml index 2972bc6d51c..9554d4d6c00 100644 --- a/rustc_tools_util/Cargo.toml +++ b/rustc_tools_util/Cargo.toml @@ -1,7 +1,6 @@ [package] name = "rustc_tools_util" version = "0.2.0" -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" |
