From 1f746e09390d25dd1e15d61e6ef07029b89fff50 Mon Sep 17 00:00:00 2001 From: Dario Nieuwenhuis Date: Sat, 18 Jun 2022 01:38:12 +0200 Subject: [PATCH] Remove the authors field from Cargo.tomls It currently contains whoever was first to write some code for the crate, even if many more people have contributed to it later. The field is "sort of" deprecated, it was made optional recently: https://rust-lang.github.io/rfcs/3052-optional-authors-field.html Due the the reasons listed there I believe removing it is better than setting it to generic fluff like "The Embassy contributors". --- embassy-boot/boot/Cargo.toml | 3 --- embassy-boot/nrf/Cargo.toml | 3 --- embassy-boot/stm32/Cargo.toml | 3 --- embassy-cortex-m/Cargo.toml | 1 - embassy-embedded-hal/Cargo.toml | 1 - embassy-hal-common/Cargo.toml | 1 - embassy-lora/Cargo.toml | 1 - embassy-macros/Cargo.toml | 1 - embassy-net/Cargo.toml | 1 - embassy-nrf/Cargo.toml | 1 - embassy-rp/Cargo.toml | 1 - embassy-stm32/Cargo.toml | 1 - embassy/Cargo.toml | 1 - examples/boot/nrf/Cargo.toml | 1 - examples/boot/stm32f3/Cargo.toml | 1 - examples/boot/stm32f7/Cargo.toml | 1 - examples/boot/stm32h7/Cargo.toml | 1 - examples/boot/stm32l0/Cargo.toml | 1 - examples/boot/stm32l1/Cargo.toml | 1 - examples/boot/stm32l4/Cargo.toml | 1 - examples/boot/stm32wl/Cargo.toml | 1 - examples/nrf/Cargo.toml | 1 - examples/rp/Cargo.toml | 1 - examples/std/Cargo.toml | 1 - examples/stm32f0/Cargo.toml | 1 - examples/stm32f1/Cargo.toml | 1 - examples/stm32f2/Cargo.toml | 1 - examples/stm32f3/Cargo.toml | 1 - examples/stm32f4/Cargo.toml | 1 - examples/stm32f7/Cargo.toml | 1 - examples/stm32g0/Cargo.toml | 1 - examples/stm32g4/Cargo.toml | 1 - examples/stm32h7/Cargo.toml | 1 - examples/stm32l0/Cargo.toml | 1 - examples/stm32l1/Cargo.toml | 1 - examples/stm32l4/Cargo.toml | 1 - examples/stm32l5/Cargo.toml | 1 - examples/stm32u5/Cargo.toml | 1 - examples/stm32wb/Cargo.toml | 1 - examples/stm32wl/Cargo.toml | 1 - examples/wasm/Cargo.toml | 1 - stm32-gen-features/Cargo.toml | 1 - tests/stm32/Cargo.toml | 1 - xtask/Cargo.toml | 4 ---- 44 files changed, 53 deletions(-) diff --git a/embassy-boot/boot/Cargo.toml b/embassy-boot/boot/Cargo.toml index 7ceb5885b..5bb2c34b3 100644 --- a/embassy-boot/boot/Cargo.toml +++ b/embassy-boot/boot/Cargo.toml @@ -1,7 +1,4 @@ [package] -authors = [ - "Ulf Lilleengen ", -] edition = "2021" name = "embassy-boot" version = "0.1.0" diff --git a/embassy-boot/nrf/Cargo.toml b/embassy-boot/nrf/Cargo.toml index f3cfa1144..b5cc9c4fe 100644 --- a/embassy-boot/nrf/Cargo.toml +++ b/embassy-boot/nrf/Cargo.toml @@ -1,7 +1,4 @@ [package] -authors = [ - "Ulf Lilleengen ", -] edition = "2021" name = "embassy-boot-nrf" version = "0.1.0" diff --git a/embassy-boot/stm32/Cargo.toml b/embassy-boot/stm32/Cargo.toml index a31717ff3..3f198c114 100644 --- a/embassy-boot/stm32/Cargo.toml +++ b/embassy-boot/stm32/Cargo.toml @@ -1,7 +1,4 @@ [package] -authors = [ - "Ulf Lilleengen ", -] edition = "2021" name = "embassy-boot-stm32" version = "0.1.0" diff --git a/embassy-cortex-m/Cargo.toml b/embassy-cortex-m/Cargo.toml index b1a2b2037..f1e7beb56 100644 --- a/embassy-cortex-m/Cargo.toml +++ b/embassy-cortex-m/Cargo.toml @@ -1,7 +1,6 @@ [package] name = "embassy-cortex-m" version = "0.1.0" -authors = ["Dario Nieuwenhuis "] edition = "2021" [package.metadata.embassy_docs] diff --git a/embassy-embedded-hal/Cargo.toml b/embassy-embedded-hal/Cargo.toml index 44e0bdbf3..d1b9f3ea4 100644 --- a/embassy-embedded-hal/Cargo.toml +++ b/embassy-embedded-hal/Cargo.toml @@ -1,7 +1,6 @@ [package] name = "embassy-embedded-hal" version = "0.1.0" -authors = ["Dario Nieuwenhuis "] edition = "2021" [features] diff --git a/embassy-hal-common/Cargo.toml b/embassy-hal-common/Cargo.toml index abce22291..f7ebcc21e 100644 --- a/embassy-hal-common/Cargo.toml +++ b/embassy-hal-common/Cargo.toml @@ -1,7 +1,6 @@ [package] name = "embassy-hal-common" version = "0.1.0" -authors = ["Dario Nieuwenhuis "] edition = "2021" [features] diff --git a/embassy-lora/Cargo.toml b/embassy-lora/Cargo.toml index 18b90ca14..0304c2c35 100644 --- a/embassy-lora/Cargo.toml +++ b/embassy-lora/Cargo.toml @@ -1,7 +1,6 @@ [package] name = "embassy-lora" version = "0.1.0" -authors = ["Ulf Lilleengen "] edition = "2021" [package.metadata.embassy_docs] diff --git a/embassy-macros/Cargo.toml b/embassy-macros/Cargo.toml index eff4b005b..6abafa581 100644 --- a/embassy-macros/Cargo.toml +++ b/embassy-macros/Cargo.toml @@ -1,7 +1,6 @@ [package] name = "embassy-macros" version = "0.1.0" -authors = ["Dario Nieuwenhuis "] edition = "2021" [dependencies] diff --git a/embassy-net/Cargo.toml b/embassy-net/Cargo.toml index 027bbae31..279313240 100644 --- a/embassy-net/Cargo.toml +++ b/embassy-net/Cargo.toml @@ -1,7 +1,6 @@ [package] name = "embassy-net" version = "0.1.0" -authors = ["Dario Nieuwenhuis "] edition = "2021" diff --git a/embassy-nrf/Cargo.toml b/embassy-nrf/Cargo.toml index c725199c3..b148d2c56 100644 --- a/embassy-nrf/Cargo.toml +++ b/embassy-nrf/Cargo.toml @@ -1,7 +1,6 @@ [package] name = "embassy-nrf" version = "0.1.0" -authors = ["Dario Nieuwenhuis "] edition = "2021" [package.metadata.embassy_docs] diff --git a/embassy-rp/Cargo.toml b/embassy-rp/Cargo.toml index 2be8b3d14..1c572b619 100644 --- a/embassy-rp/Cargo.toml +++ b/embassy-rp/Cargo.toml @@ -1,7 +1,6 @@ [package] name = "embassy-rp" version = "0.1.0" -authors = ["Dario Nieuwenhuis "] edition = "2021" [package.metadata.embassy_docs] diff --git a/embassy-stm32/Cargo.toml b/embassy-stm32/Cargo.toml index 6bb9a0ed5..47a9ece17 100644 --- a/embassy-stm32/Cargo.toml +++ b/embassy-stm32/Cargo.toml @@ -1,7 +1,6 @@ [package] name = "embassy-stm32" version = "0.1.0" -authors = ["Dario Nieuwenhuis "] edition = "2021" [package.metadata.embassy_docs] diff --git a/embassy/Cargo.toml b/embassy/Cargo.toml index 819de23ad..1d193d6a6 100644 --- a/embassy/Cargo.toml +++ b/embassy/Cargo.toml @@ -1,7 +1,6 @@ [package] name = "embassy" version = "0.1.0" -authors = ["Dario Nieuwenhuis "] edition = "2021" [package.metadata.embassy_docs] diff --git a/examples/boot/nrf/Cargo.toml b/examples/boot/nrf/Cargo.toml index f1d44bad8..0a0b76e67 100644 --- a/examples/boot/nrf/Cargo.toml +++ b/examples/boot/nrf/Cargo.toml @@ -1,5 +1,4 @@ [package] -authors = ["Ulf Lilleengen "] edition = "2021" name = "embassy-boot-nrf-examples" version = "0.1.0" diff --git a/examples/boot/stm32f3/Cargo.toml b/examples/boot/stm32f3/Cargo.toml index 63cdf6234..017813691 100644 --- a/examples/boot/stm32f3/Cargo.toml +++ b/examples/boot/stm32f3/Cargo.toml @@ -1,5 +1,4 @@ [package] -authors = ["Ulf Lilleengen "] edition = "2021" name = "embassy-boot-stm32f3-examples" version = "0.1.0" diff --git a/examples/boot/stm32f7/Cargo.toml b/examples/boot/stm32f7/Cargo.toml index ce0773b22..07aa73892 100644 --- a/examples/boot/stm32f7/Cargo.toml +++ b/examples/boot/stm32f7/Cargo.toml @@ -1,5 +1,4 @@ [package] -authors = ["Ulf Lilleengen "] edition = "2021" name = "embassy-boot-stm32f7-examples" version = "0.1.0" diff --git a/examples/boot/stm32h7/Cargo.toml b/examples/boot/stm32h7/Cargo.toml index fddf4cfdb..d47cb65cc 100644 --- a/examples/boot/stm32h7/Cargo.toml +++ b/examples/boot/stm32h7/Cargo.toml @@ -1,5 +1,4 @@ [package] -authors = ["Ulf Lilleengen "] edition = "2021" name = "embassy-boot-stm32f7-examples" version = "0.1.0" diff --git a/examples/boot/stm32l0/Cargo.toml b/examples/boot/stm32l0/Cargo.toml index bbfe692a7..fbc4fb711 100644 --- a/examples/boot/stm32l0/Cargo.toml +++ b/examples/boot/stm32l0/Cargo.toml @@ -1,5 +1,4 @@ [package] -authors = ["Ulf Lilleengen "] edition = "2021" name = "embassy-boot-stm32l0-examples" version = "0.1.0" diff --git a/examples/boot/stm32l1/Cargo.toml b/examples/boot/stm32l1/Cargo.toml index 56cfb6f02..f3f05f611 100644 --- a/examples/boot/stm32l1/Cargo.toml +++ b/examples/boot/stm32l1/Cargo.toml @@ -1,5 +1,4 @@ [package] -authors = ["Ulf Lilleengen "] edition = "2021" name = "embassy-boot-stm32l1-examples" version = "0.1.0" diff --git a/examples/boot/stm32l4/Cargo.toml b/examples/boot/stm32l4/Cargo.toml index ddb6b151a..1b7b2202f 100644 --- a/examples/boot/stm32l4/Cargo.toml +++ b/examples/boot/stm32l4/Cargo.toml @@ -1,5 +1,4 @@ [package] -authors = ["Ulf Lilleengen "] edition = "2021" name = "embassy-boot-stm32l4-examples" version = "0.1.0" diff --git a/examples/boot/stm32wl/Cargo.toml b/examples/boot/stm32wl/Cargo.toml index 08136c8e1..1bd69ae42 100644 --- a/examples/boot/stm32wl/Cargo.toml +++ b/examples/boot/stm32wl/Cargo.toml @@ -1,5 +1,4 @@ [package] -authors = ["Ulf Lilleengen "] edition = "2021" name = "embassy-boot-stm32wl-examples" version = "0.1.0" diff --git a/examples/nrf/Cargo.toml b/examples/nrf/Cargo.toml index 124725f95..0cba77694 100644 --- a/examples/nrf/Cargo.toml +++ b/examples/nrf/Cargo.toml @@ -1,5 +1,4 @@ [package] -authors = ["Dario Nieuwenhuis "] edition = "2021" name = "embassy-nrf-examples" version = "0.1.0" diff --git a/examples/rp/Cargo.toml b/examples/rp/Cargo.toml index 4a4794add..d0704f203 100644 --- a/examples/rp/Cargo.toml +++ b/examples/rp/Cargo.toml @@ -1,5 +1,4 @@ [package] -authors = ["Dario Nieuwenhuis "] edition = "2021" name = "embassy-rp-examples" version = "0.1.0" diff --git a/examples/std/Cargo.toml b/examples/std/Cargo.toml index 06f0f357e..8787f3c92 100644 --- a/examples/std/Cargo.toml +++ b/examples/std/Cargo.toml @@ -1,5 +1,4 @@ [package] -authors = ["Dario Nieuwenhuis "] edition = "2021" name = "embassy-std-examples" version = "0.1.0" diff --git a/examples/stm32f0/Cargo.toml b/examples/stm32f0/Cargo.toml index 8e0dad865..615803258 100644 --- a/examples/stm32f0/Cargo.toml +++ b/examples/stm32f0/Cargo.toml @@ -1,7 +1,6 @@ [package] name = "embassy-stm32f0-examples" version = "0.1.0" -authors = ["Thales Fragoso "] edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/examples/stm32f1/Cargo.toml b/examples/stm32f1/Cargo.toml index 503114bfb..fb0e605d6 100644 --- a/examples/stm32f1/Cargo.toml +++ b/examples/stm32f1/Cargo.toml @@ -1,5 +1,4 @@ [package] -authors = ["Dario Nieuwenhuis "] edition = "2021" name = "embassy-stm32f1-examples" version = "0.1.0" diff --git a/examples/stm32f2/Cargo.toml b/examples/stm32f2/Cargo.toml index 12bcb7200..6ea6add17 100644 --- a/examples/stm32f2/Cargo.toml +++ b/examples/stm32f2/Cargo.toml @@ -1,5 +1,4 @@ [package] -authors = ["Dario Nieuwenhuis "] edition = "2021" name = "embassy-stm32f2-examples" version = "0.1.0" diff --git a/examples/stm32f3/Cargo.toml b/examples/stm32f3/Cargo.toml index f30a5e969..6912ba765 100644 --- a/examples/stm32f3/Cargo.toml +++ b/examples/stm32f3/Cargo.toml @@ -1,5 +1,4 @@ [package] -authors = ["Dario Nieuwenhuis "] edition = "2021" name = "embassy-stm32f3-examples" version = "0.1.0" diff --git a/examples/stm32f4/Cargo.toml b/examples/stm32f4/Cargo.toml index f755c1d8c..de33ffad8 100644 --- a/examples/stm32f4/Cargo.toml +++ b/examples/stm32f4/Cargo.toml @@ -1,5 +1,4 @@ [package] -authors = ["Dario Nieuwenhuis "] edition = "2021" name = "embassy-stm32f4-examples" version = "0.1.0" diff --git a/examples/stm32f7/Cargo.toml b/examples/stm32f7/Cargo.toml index a51f2e6f4..b0a548a3f 100644 --- a/examples/stm32f7/Cargo.toml +++ b/examples/stm32f7/Cargo.toml @@ -1,5 +1,4 @@ [package] -authors = ["Dario Nieuwenhuis "] edition = "2021" name = "embassy-stm32f7-examples" version = "0.1.0" diff --git a/examples/stm32g0/Cargo.toml b/examples/stm32g0/Cargo.toml index 1a7f3adcb..bf23fa822 100644 --- a/examples/stm32g0/Cargo.toml +++ b/examples/stm32g0/Cargo.toml @@ -1,5 +1,4 @@ [package] -authors = ["Dario Nieuwenhuis ", "Ben Gamari "] edition = "2021" name = "embassy-stm32g0-examples" version = "0.1.0" diff --git a/examples/stm32g4/Cargo.toml b/examples/stm32g4/Cargo.toml index 274825491..d3641c489 100644 --- a/examples/stm32g4/Cargo.toml +++ b/examples/stm32g4/Cargo.toml @@ -1,5 +1,4 @@ [package] -authors = ["Dario Nieuwenhuis ", "Ben Gamari "] edition = "2021" name = "embassy-stm32g4-examples" version = "0.1.0" diff --git a/examples/stm32h7/Cargo.toml b/examples/stm32h7/Cargo.toml index 64cc77e71..d905031d6 100644 --- a/examples/stm32h7/Cargo.toml +++ b/examples/stm32h7/Cargo.toml @@ -1,5 +1,4 @@ [package] -authors = ["Dario Nieuwenhuis "] edition = "2021" name = "embassy-stm32h7-examples" version = "0.1.0" diff --git a/examples/stm32l0/Cargo.toml b/examples/stm32l0/Cargo.toml index 2c1a475b4..d6093963b 100644 --- a/examples/stm32l0/Cargo.toml +++ b/examples/stm32l0/Cargo.toml @@ -1,5 +1,4 @@ [package] -authors = ["Dario Nieuwenhuis ", "Ulf Lilleengen "] edition = "2021" name = "embassy-stm32l0-examples" version = "0.1.0" diff --git a/examples/stm32l1/Cargo.toml b/examples/stm32l1/Cargo.toml index 63516b920..7fec60575 100644 --- a/examples/stm32l1/Cargo.toml +++ b/examples/stm32l1/Cargo.toml @@ -1,5 +1,4 @@ [package] -authors = ["Dario Nieuwenhuis ", "Ulf Lilleengen "] edition = "2021" name = "embassy-stm32l1-examples" version = "0.1.0" diff --git a/examples/stm32l4/Cargo.toml b/examples/stm32l4/Cargo.toml index 950ba7e4d..7d89bf94a 100644 --- a/examples/stm32l4/Cargo.toml +++ b/examples/stm32l4/Cargo.toml @@ -1,5 +1,4 @@ [package] -authors = ["Dario Nieuwenhuis "] edition = "2021" name = "embassy-stm32l4-examples" version = "0.1.0" diff --git a/examples/stm32l5/Cargo.toml b/examples/stm32l5/Cargo.toml index b6d3848d8..85eac7b8f 100644 --- a/examples/stm32l5/Cargo.toml +++ b/examples/stm32l5/Cargo.toml @@ -1,5 +1,4 @@ [package] -authors = ["Dario Nieuwenhuis "] edition = "2021" name = "embassy-stm32l5-examples" version = "0.1.0" diff --git a/examples/stm32u5/Cargo.toml b/examples/stm32u5/Cargo.toml index 1d752fd3f..22e2e09a1 100644 --- a/examples/stm32u5/Cargo.toml +++ b/examples/stm32u5/Cargo.toml @@ -1,5 +1,4 @@ [package] -authors = ["Dario Nieuwenhuis "] edition = "2021" name = "embassy-stm32u5-examples" version = "0.1.0" diff --git a/examples/stm32wb/Cargo.toml b/examples/stm32wb/Cargo.toml index 3e096a64d..812d638fa 100644 --- a/examples/stm32wb/Cargo.toml +++ b/examples/stm32wb/Cargo.toml @@ -1,5 +1,4 @@ [package] -authors = ["Dario Nieuwenhuis "] edition = "2021" name = "embassy-stm32wb-examples" version = "0.1.0" diff --git a/examples/stm32wl/Cargo.toml b/examples/stm32wl/Cargo.toml index 68f5f137d..6be360735 100644 --- a/examples/stm32wl/Cargo.toml +++ b/examples/stm32wl/Cargo.toml @@ -1,5 +1,4 @@ [package] -authors = ["Dario Nieuwenhuis ", "Ulf Lilleengen "] edition = "2021" name = "embassy-stm32wl-examples" version = "0.1.0" diff --git a/examples/wasm/Cargo.toml b/examples/wasm/Cargo.toml index 7d19c9fe9..347252fa3 100644 --- a/examples/wasm/Cargo.toml +++ b/examples/wasm/Cargo.toml @@ -1,5 +1,4 @@ [package] -authors = ["Ulf Lilleengen "] edition = "2021" name = "embassy-wasm-example" version = "0.1.0" diff --git a/stm32-gen-features/Cargo.toml b/stm32-gen-features/Cargo.toml index 7146a9e9c..f92d127ea 100644 --- a/stm32-gen-features/Cargo.toml +++ b/stm32-gen-features/Cargo.toml @@ -1,7 +1,6 @@ [package] name = "gen_features" version = "0.1.0" -authors = ["Côme ALLART "] edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/tests/stm32/Cargo.toml b/tests/stm32/Cargo.toml index e96c86487..df8d64449 100644 --- a/tests/stm32/Cargo.toml +++ b/tests/stm32/Cargo.toml @@ -1,5 +1,4 @@ [package] -authors = ["Dario Nieuwenhuis "] edition = "2021" name = "embassy-stm32-tests" version = "0.1.0" diff --git a/xtask/Cargo.toml b/xtask/Cargo.toml index 249cc6aad..d9d6c9b26 100644 --- a/xtask/Cargo.toml +++ b/xtask/Cargo.toml @@ -1,8 +1,4 @@ [package] -authors = [ - "Ulf Lilleengen ", - "Bob McWhirter " -] edition = "2021" name = "xtask" version = "0.1.0"