From e9d0311c4ac50aaea5f31e071af3209a0c176890 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Tue, 23 Nov 2021 10:09:06 +0900 Subject: [PATCH] Remove authors field from Cargo.toml (#2521) https://rust-lang.github.io/rfcs/3052-optional-authors-field.html --- examples/functional/Cargo.toml | 1 - examples/imperative/Cargo.toml | 1 - futures-channel/Cargo.toml | 1 - futures-core/Cargo.toml | 1 - futures-executor/Cargo.toml | 1 - futures-io/Cargo.toml | 1 - futures-macro/Cargo.toml | 1 - futures-sink/Cargo.toml | 1 - futures-task/Cargo.toml | 1 - futures-test/Cargo.toml | 1 - futures-util/Cargo.toml | 1 - futures/Cargo.toml | 1 - futures/tests/macro-reexport/Cargo.toml | 1 - futures/tests/macro-tests/Cargo.toml | 1 - futures/tests/no-std/Cargo.toml | 1 - 15 files changed, 15 deletions(-) diff --git a/examples/functional/Cargo.toml b/examples/functional/Cargo.toml index 4376909be2..7b8b494d98 100644 --- a/examples/functional/Cargo.toml +++ b/examples/functional/Cargo.toml @@ -2,7 +2,6 @@ name = "futures-example-functional" edition = "2018" version = "0.1.0" -authors = ["Alex Crichton "] publish = false [dependencies] diff --git a/examples/imperative/Cargo.toml b/examples/imperative/Cargo.toml index e048316cfd..3405451f00 100644 --- a/examples/imperative/Cargo.toml +++ b/examples/imperative/Cargo.toml @@ -2,7 +2,6 @@ name = "futures-example-imperative" edition = "2018" version = "0.1.0" -authors = ["Alex Crichton "] publish = false [dependencies] diff --git a/futures-channel/Cargo.toml b/futures-channel/Cargo.toml index 01375bedae..a64232aec1 100644 --- a/futures-channel/Cargo.toml +++ b/futures-channel/Cargo.toml @@ -3,7 +3,6 @@ name = "futures-channel" version = "0.3.17" edition = "2018" rust-version = "1.45" -authors = ["Alex Crichton "] license = "MIT OR Apache-2.0" repository = "https://github.com/rust-lang/futures-rs" homepage = "https://rust-lang.github.io/futures-rs" diff --git a/futures-core/Cargo.toml b/futures-core/Cargo.toml index 0cd1d1dfe0..e6dbc315c2 100644 --- a/futures-core/Cargo.toml +++ b/futures-core/Cargo.toml @@ -3,7 +3,6 @@ name = "futures-core" version = "0.3.17" edition = "2018" rust-version = "1.36" -authors = ["Alex Crichton "] license = "MIT OR Apache-2.0" repository = "https://github.com/rust-lang/futures-rs" homepage = "https://rust-lang.github.io/futures-rs" diff --git a/futures-executor/Cargo.toml b/futures-executor/Cargo.toml index 1fbe4290c4..115cf66b08 100644 --- a/futures-executor/Cargo.toml +++ b/futures-executor/Cargo.toml @@ -3,7 +3,6 @@ name = "futures-executor" version = "0.3.17" edition = "2018" rust-version = "1.45" -authors = ["Alex Crichton "] license = "MIT OR Apache-2.0" repository = "https://github.com/rust-lang/futures-rs" homepage = "https://rust-lang.github.io/futures-rs" diff --git a/futures-io/Cargo.toml b/futures-io/Cargo.toml index c2b21c601f..3192017ea4 100644 --- a/futures-io/Cargo.toml +++ b/futures-io/Cargo.toml @@ -3,7 +3,6 @@ name = "futures-io" version = "0.3.17" edition = "2018" rust-version = "1.36" -authors = ["Alex Crichton "] license = "MIT OR Apache-2.0" repository = "https://github.com/rust-lang/futures-rs" homepage = "https://rust-lang.github.io/futures-rs" diff --git a/futures-macro/Cargo.toml b/futures-macro/Cargo.toml index 0441092a87..2fc76ce6b9 100644 --- a/futures-macro/Cargo.toml +++ b/futures-macro/Cargo.toml @@ -3,7 +3,6 @@ name = "futures-macro" version = "0.3.17" edition = "2018" rust-version = "1.45" -authors = ["Taylor Cramer ", "Taiki Endo "] license = "MIT OR Apache-2.0" repository = "https://github.com/rust-lang/futures-rs" homepage = "https://rust-lang.github.io/futures-rs" diff --git a/futures-sink/Cargo.toml b/futures-sink/Cargo.toml index 919525f8dd..802362f83f 100644 --- a/futures-sink/Cargo.toml +++ b/futures-sink/Cargo.toml @@ -3,7 +3,6 @@ name = "futures-sink" version = "0.3.17" edition = "2018" rust-version = "1.36" -authors = ["Alex Crichton "] license = "MIT OR Apache-2.0" repository = "https://github.com/rust-lang/futures-rs" homepage = "https://rust-lang.github.io/futures-rs" diff --git a/futures-task/Cargo.toml b/futures-task/Cargo.toml index ceb293d34e..c26a44122b 100644 --- a/futures-task/Cargo.toml +++ b/futures-task/Cargo.toml @@ -3,7 +3,6 @@ name = "futures-task" version = "0.3.17" edition = "2018" rust-version = "1.36" -authors = ["Alex Crichton "] license = "MIT OR Apache-2.0" repository = "https://github.com/rust-lang/futures-rs" homepage = "https://rust-lang.github.io/futures-rs" diff --git a/futures-test/Cargo.toml b/futures-test/Cargo.toml index dff72dcc85..6f782366c0 100644 --- a/futures-test/Cargo.toml +++ b/futures-test/Cargo.toml @@ -3,7 +3,6 @@ name = "futures-test" version = "0.3.17" edition = "2018" rust-version = "1.45" -authors = ["Wim Looman "] license = "MIT OR Apache-2.0" repository = "https://github.com/rust-lang/futures-rs" homepage = "https://rust-lang.github.io/futures-rs" diff --git a/futures-util/Cargo.toml b/futures-util/Cargo.toml index 600ef5a25f..0e7a22bc9f 100644 --- a/futures-util/Cargo.toml +++ b/futures-util/Cargo.toml @@ -3,7 +3,6 @@ name = "futures-util" version = "0.3.17" edition = "2018" rust-version = "1.45" -authors = ["Alex Crichton "] license = "MIT OR Apache-2.0" repository = "https://github.com/rust-lang/futures-rs" homepage = "https://rust-lang.github.io/futures-rs" diff --git a/futures/Cargo.toml b/futures/Cargo.toml index eb987fab1d..d8b7a1534e 100644 --- a/futures/Cargo.toml +++ b/futures/Cargo.toml @@ -3,7 +3,6 @@ name = "futures" version = "0.3.17" edition = "2018" rust-version = "1.45" -authors = ["Alex Crichton "] license = "MIT OR Apache-2.0" readme = "../README.md" keywords = ["futures", "async", "future"] diff --git a/futures/tests/macro-reexport/Cargo.toml b/futures/tests/macro-reexport/Cargo.toml index 940b537ea7..a648ee54a5 100644 --- a/futures/tests/macro-reexport/Cargo.toml +++ b/futures/tests/macro-reexport/Cargo.toml @@ -1,7 +1,6 @@ [package] name = "macro-reexport" version = "0.1.0" -authors = ["Taiki Endo "] edition = "2018" publish = false diff --git a/futures/tests/macro-tests/Cargo.toml b/futures/tests/macro-tests/Cargo.toml index 3d30563868..963da731ac 100644 --- a/futures/tests/macro-tests/Cargo.toml +++ b/futures/tests/macro-tests/Cargo.toml @@ -1,7 +1,6 @@ [package] name = "macro-tests" version = "0.1.0" -authors = ["Taiki Endo "] edition = "2018" publish = false diff --git a/futures/tests/no-std/Cargo.toml b/futures/tests/no-std/Cargo.toml index 9526732e34..ed5d0c146a 100644 --- a/futures/tests/no-std/Cargo.toml +++ b/futures/tests/no-std/Cargo.toml @@ -1,7 +1,6 @@ [package] name = "no-std" version = "0.1.0" -authors = ["Taiki Endo "] edition = "2018" publish = false