summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDario Nieuwenhuis <dirbaio@dirbaio.net>2022-06-18 01:38:12 +0200
committerDario Nieuwenhuis <dirbaio@dirbaio.net>2022-06-18 02:16:40 +0200
commit1f746e09390d25dd1e15d61e6ef07029b89fff50 (patch)
treebe9309a2025ea77220206d8fce1dc6525f713950
parent88e36a70bdddaa3ac2ddccd1dcd299b321f8c86c (diff)
downloadembassy-1f746e09390d25dd1e15d61e6ef07029b89fff50.zip
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".
-rw-r--r--embassy-boot/boot/Cargo.toml3
-rw-r--r--embassy-boot/nrf/Cargo.toml3
-rw-r--r--embassy-boot/stm32/Cargo.toml3
-rw-r--r--embassy-cortex-m/Cargo.toml1
-rw-r--r--embassy-embedded-hal/Cargo.toml1
-rw-r--r--embassy-hal-common/Cargo.toml1
-rw-r--r--embassy-lora/Cargo.toml1
-rw-r--r--embassy-macros/Cargo.toml1
-rw-r--r--embassy-net/Cargo.toml1
-rw-r--r--embassy-nrf/Cargo.toml1
-rw-r--r--embassy-rp/Cargo.toml1
-rw-r--r--embassy-stm32/Cargo.toml1
-rw-r--r--embassy/Cargo.toml1
-rw-r--r--examples/boot/nrf/Cargo.toml1
-rw-r--r--examples/boot/stm32f3/Cargo.toml1
-rw-r--r--examples/boot/stm32f7/Cargo.toml1
-rw-r--r--examples/boot/stm32h7/Cargo.toml1
-rw-r--r--examples/boot/stm32l0/Cargo.toml1
-rw-r--r--examples/boot/stm32l1/Cargo.toml1
-rw-r--r--examples/boot/stm32l4/Cargo.toml1
-rw-r--r--examples/boot/stm32wl/Cargo.toml1
-rw-r--r--examples/nrf/Cargo.toml1
-rw-r--r--examples/rp/Cargo.toml1
-rw-r--r--examples/std/Cargo.toml1
-rw-r--r--examples/stm32f0/Cargo.toml1
-rw-r--r--examples/stm32f1/Cargo.toml1
-rw-r--r--examples/stm32f2/Cargo.toml1
-rw-r--r--examples/stm32f3/Cargo.toml1
-rw-r--r--examples/stm32f4/Cargo.toml1
-rw-r--r--examples/stm32f7/Cargo.toml1
-rw-r--r--examples/stm32g0/Cargo.toml1
-rw-r--r--examples/stm32g4/Cargo.toml1
-rw-r--r--examples/stm32h7/Cargo.toml1
-rw-r--r--examples/stm32l0/Cargo.toml1
-rw-r--r--examples/stm32l1/Cargo.toml1
-rw-r--r--examples/stm32l4/Cargo.toml1
-rw-r--r--examples/stm32l5/Cargo.toml1
-rw-r--r--examples/stm32u5/Cargo.toml1
-rw-r--r--examples/stm32wb/Cargo.toml1
-rw-r--r--examples/stm32wl/Cargo.toml1
-rw-r--r--examples/wasm/Cargo.toml1
-rw-r--r--stm32-gen-features/Cargo.toml1
-rw-r--r--tests/stm32/Cargo.toml1
-rw-r--r--xtask/Cargo.toml4
44 files changed, 0 insertions, 53 deletions
diff --git a/embassy-boot/boot/Cargo.toml b/embassy-boot/boot/Cargo.toml
index 7ceb5885..5bb2c34b 100644
--- a/embassy-boot/boot/Cargo.toml
+++ b/embassy-boot/boot/Cargo.toml
@@ -1,7 +1,4 @@
[package]
-authors = [
- "Ulf Lilleengen <lulf@redhat.com>",
-]
edition = "2021"
name = "embassy-boot"
version = "0.1.0"
diff --git a/embassy-boot/nrf/Cargo.toml b/embassy-boot/nrf/Cargo.toml
index f3cfa114..b5cc9c4f 100644
--- a/embassy-boot/nrf/Cargo.toml
+++ b/embassy-boot/nrf/Cargo.toml
@@ -1,7 +1,4 @@
[package]
-authors = [
- "Ulf Lilleengen <lulf@redhat.com>",
-]
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 a31717ff..3f198c11 100644
--- a/embassy-boot/stm32/Cargo.toml
+++ b/embassy-boot/stm32/Cargo.toml
@@ -1,7 +1,4 @@
[package]
-authors = [
- "Ulf Lilleengen <lulf@redhat.com>",
-]
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 b1a2b203..f1e7beb5 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 <dirbaio@dirbaio.net>"]
edition = "2021"
[package.metadata.embassy_docs]
diff --git a/embassy-embedded-hal/Cargo.toml b/embassy-embedded-hal/Cargo.toml
index 44e0bdbf..d1b9f3ea 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 <dirbaio@dirbaio.net>"]
edition = "2021"
[features]
diff --git a/embassy-hal-common/Cargo.toml b/embassy-hal-common/Cargo.toml
index abce2229..f7ebcc21 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 <dirbaio@dirbaio.net>"]
edition = "2021"
[features]
diff --git a/embassy-lora/Cargo.toml b/embassy-lora/Cargo.toml
index 18b90ca1..0304c2c3 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 <lulf@redhat.com>"]
edition = "2021"
[package.metadata.embassy_docs]
diff --git a/embassy-macros/Cargo.toml b/embassy-macros/Cargo.toml
index eff4b005..6abafa58 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 <dirbaio@dirbaio.net>"]
edition = "2021"
[dependencies]
diff --git a/embassy-net/Cargo.toml b/embassy-net/Cargo.toml
index 027bbae3..27931324 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 <dirbaio@dirbaio.net>"]
edition = "2021"
diff --git a/embassy-nrf/Cargo.toml b/embassy-nrf/Cargo.toml
index c725199c..b148d2c5 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 <dirbaio@dirbaio.net>"]
edition = "2021"
[package.metadata.embassy_docs]
diff --git a/embassy-rp/Cargo.toml b/embassy-rp/Cargo.toml
index 2be8b3d1..1c572b61 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 <dirbaio@dirbaio.net>"]
edition = "2021"
[package.metadata.embassy_docs]
diff --git a/embassy-stm32/Cargo.toml b/embassy-stm32/Cargo.toml
index 6bb9a0ed..47a9ece1 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 <dirbaio@dirbaio.net>"]
edition = "2021"
[package.metadata.embassy_docs]
diff --git a/embassy/Cargo.toml b/embassy/Cargo.toml
index 819de23a..1d193d6a 100644
--- a/embassy/Cargo.toml
+++ b/embassy/Cargo.toml
@@ -1,7 +1,6 @@
[package]
name = "embassy"
version = "0.1.0"
-authors = ["Dario Nieuwenhuis <dirbaio@dirbaio.net>"]
edition = "2021"
[package.metadata.embassy_docs]
diff --git a/examples/boot/nrf/Cargo.toml b/examples/boot/nrf/Cargo.toml
index f1d44bad..0a0b76e6 100644
--- a/examples/boot/nrf/Cargo.toml
+++ b/examples/boot/nrf/Cargo.toml
@@ -1,5 +1,4 @@
[package]
-authors = ["Ulf Lilleengen <lulf@redhat.com>"]
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 63cdf623..01781369 100644
--- a/examples/boot/stm32f3/Cargo.toml
+++ b/examples/boot/stm32f3/Cargo.toml
@@ -1,5 +1,4 @@
[package]
-authors = ["Ulf Lilleengen <lulf@redhat.com>"]
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 ce0773b2..07aa7389 100644
--- a/examples/boot/stm32f7/Cargo.toml
+++ b/examples/boot/stm32f7/Cargo.toml
@@ -1,5 +1,4 @@
[package]
-authors = ["Ulf Lilleengen <lulf@redhat.com>"]
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 fddf4cfd..d47cb65c 100644
--- a/examples/boot/stm32h7/Cargo.toml
+++ b/examples/boot/stm32h7/Cargo.toml
@@ -1,5 +1,4 @@
[package]
-authors = ["Ulf Lilleengen <lulf@redhat.com>"]
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 bbfe692a..fbc4fb71 100644
--- a/examples/boot/stm32l0/Cargo.toml
+++ b/examples/boot/stm32l0/Cargo.toml
@@ -1,5 +1,4 @@
[package]
-authors = ["Ulf Lilleengen <lulf@redhat.com>"]
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 56cfb6f0..f3f05f61 100644
--- a/examples/boot/stm32l1/Cargo.toml
+++ b/examples/boot/stm32l1/Cargo.toml
@@ -1,5 +1,4 @@
[package]
-authors = ["Ulf Lilleengen <lulf@redhat.com>"]
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 ddb6b151..1b7b2202 100644
--- a/examples/boot/stm32l4/Cargo.toml
+++ b/examples/boot/stm32l4/Cargo.toml
@@ -1,5 +1,4 @@
[package]
-authors = ["Ulf Lilleengen <lulf@redhat.com>"]
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 08136c8e..1bd69ae4 100644
--- a/examples/boot/stm32wl/Cargo.toml
+++ b/examples/boot/stm32wl/Cargo.toml
@@ -1,5 +1,4 @@
[package]
-authors = ["Ulf Lilleengen <lulf@redhat.com>"]
edition = "2021"
name = "embassy-boot-stm32wl-examples"
version = "0.1.0"
diff --git a/examples/nrf/Cargo.toml b/examples/nrf/Cargo.toml
index 124725f9..0cba7769 100644
--- a/examples/nrf/Cargo.toml
+++ b/examples/nrf/Cargo.toml
@@ -1,5 +1,4 @@
[package]
-authors = ["Dario Nieuwenhuis <dirbaio@dirbaio.net>"]
edition = "2021"
name = "embassy-nrf-examples"
version = "0.1.0"
diff --git a/examples/rp/Cargo.toml b/examples/rp/Cargo.toml
index 4a4794ad..d0704f20 100644
--- a/examples/rp/Cargo.toml
+++ b/examples/rp/Cargo.toml
@@ -1,5 +1,4 @@
[package]
-authors = ["Dario Nieuwenhuis <dirbaio@dirbaio.net>"]
edition = "2021"
name = "embassy-rp-examples"
version = "0.1.0"
diff --git a/examples/std/Cargo.toml b/examples/std/Cargo.toml
index 06f0f357..8787f3c9 100644
--- a/examples/std/Cargo.toml
+++ b/examples/std/Cargo.toml
@@ -1,5 +1,4 @@
[package]
-authors = ["Dario Nieuwenhuis <dirbaio@dirbaio.net>"]
edition = "2021"
name = "embassy-std-examples"
version = "0.1.0"
diff --git a/examples/stm32f0/Cargo.toml b/examples/stm32f0/Cargo.toml
index 8e0dad86..61580325 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 <thales.fragosoz@gmail.com>"]
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 503114bf..fb0e605d 100644
--- a/examples/stm32f1/Cargo.toml
+++ b/examples/stm32f1/Cargo.toml
@@ -1,5 +1,4 @@
[package]
-authors = ["Dario Nieuwenhuis <dirbaio@dirbaio.net>"]
edition = "2021"
name = "embassy-stm32f1-examples"
version = "0.1.0"
diff --git a/examples/stm32f2/Cargo.toml b/examples/stm32f2/Cargo.toml
index 12bcb720..6ea6add1 100644
--- a/examples/stm32f2/Cargo.toml
+++ b/examples/stm32f2/Cargo.toml
@@ -1,5 +1,4 @@
[package]
-authors = ["Dario Nieuwenhuis <dirbaio@dirbaio.net>"]
edition = "2021"
name = "embassy-stm32f2-examples"
version = "0.1.0"
diff --git a/examples/stm32f3/Cargo.toml b/examples/stm32f3/Cargo.toml
index f30a5e96..6912ba76 100644
--- a/examples/stm32f3/Cargo.toml
+++ b/examples/stm32f3/Cargo.toml
@@ -1,5 +1,4 @@
[package]
-authors = ["Dario Nieuwenhuis <dirbaio@dirbaio.net>"]
edition = "2021"
name = "embassy-stm32f3-examples"
version = "0.1.0"
diff --git a/examples/stm32f4/Cargo.toml b/examples/stm32f4/Cargo.toml
index f755c1d8..de33ffad 100644
--- a/examples/stm32f4/Cargo.toml
+++ b/examples/stm32f4/Cargo.toml
@@ -1,5 +1,4 @@
[package]
-authors = ["Dario Nieuwenhuis <dirbaio@dirbaio.net>"]
edition = "2021"
name = "embassy-stm32f4-examples"
version = "0.1.0"
diff --git a/examples/stm32f7/Cargo.toml b/examples/stm32f7/Cargo.toml
index a51f2e6f..b0a548a3 100644
--- a/examples/stm32f7/Cargo.toml
+++ b/examples/stm32f7/Cargo.toml
@@ -1,5 +1,4 @@
[package]
-authors = ["Dario Nieuwenhuis <dirbaio@dirbaio.net>"]
edition = "2021"
name = "embassy-stm32f7-examples"
version = "0.1.0"
diff --git a/examples/stm32g0/Cargo.toml b/examples/stm32g0/Cargo.toml
index 1a7f3adc..bf23fa82 100644
--- a/examples/stm32g0/Cargo.toml
+++ b/examples/stm32g0/Cargo.toml
@@ -1,5 +1,4 @@
[package]
-authors = ["Dario Nieuwenhuis <dirbaio@dirbaio.net>", "Ben Gamari <ben@smart-cactus.org>"]
edition = "2021"
name = "embassy-stm32g0-examples"
version = "0.1.0"
diff --git a/examples/stm32g4/Cargo.toml b/examples/stm32g4/Cargo.toml
index 27482549..d3641c48 100644
--- a/examples/stm32g4/Cargo.toml
+++ b/examples/stm32g4/Cargo.toml
@@ -1,5 +1,4 @@
[package]
-authors = ["Dario Nieuwenhuis <dirbaio@dirbaio.net>", "Ben Gamari <ben@smart-cactus.org>"]
edition = "2021"
name = "embassy-stm32g4-examples"
version = "0.1.0"
diff --git a/examples/stm32h7/Cargo.toml b/examples/stm32h7/Cargo.toml
index 64cc77e7..d905031d 100644
--- a/examples/stm32h7/Cargo.toml
+++ b/examples/stm32h7/Cargo.toml
@@ -1,5 +1,4 @@
[package]
-authors = ["Dario Nieuwenhuis <dirbaio@dirbaio.net>"]
edition = "2021"
name = "embassy-stm32h7-examples"
version = "0.1.0"
diff --git a/examples/stm32l0/Cargo.toml b/examples/stm32l0/Cargo.toml
index 2c1a475b..d6093963 100644
--- a/examples/stm32l0/Cargo.toml
+++ b/examples/stm32l0/Cargo.toml
@@ -1,5 +1,4 @@
[package]
-authors = ["Dario Nieuwenhuis <dirbaio@dirbaio.net>", "Ulf Lilleengen <ulf.lilleengen@gmail.com>"]
edition = "2021"
name = "embassy-stm32l0-examples"
version = "0.1.0"
diff --git a/examples/stm32l1/Cargo.toml b/examples/stm32l1/Cargo.toml
index 63516b92..7fec6057 100644
--- a/examples/stm32l1/Cargo.toml
+++ b/examples/stm32l1/Cargo.toml
@@ -1,5 +1,4 @@
[package]
-authors = ["Dario Nieuwenhuis <dirbaio@dirbaio.net>", "Ulf Lilleengen <ulf.lilleengen@gmail.com>"]
edition = "2021"
name = "embassy-stm32l1-examples"
version = "0.1.0"
diff --git a/examples/stm32l4/Cargo.toml b/examples/stm32l4/Cargo.toml
index 950ba7e4..7d89bf94 100644
--- a/examples/stm32l4/Cargo.toml
+++ b/examples/stm32l4/Cargo.toml
@@ -1,5 +1,4 @@
[package]
-authors = ["Dario Nieuwenhuis <dirbaio@dirbaio.net>"]
edition = "2021"
name = "embassy-stm32l4-examples"
version = "0.1.0"
diff --git a/examples/stm32l5/Cargo.toml b/examples/stm32l5/Cargo.toml
index b6d3848d..85eac7b8 100644
--- a/examples/stm32l5/Cargo.toml
+++ b/examples/stm32l5/Cargo.toml
@@ -1,5 +1,4 @@
[package]
-authors = ["Dario Nieuwenhuis <dirbaio@dirbaio.net>"]
edition = "2021"
name = "embassy-stm32l5-examples"
version = "0.1.0"
diff --git a/examples/stm32u5/Cargo.toml b/examples/stm32u5/Cargo.toml
index 1d752fd3..22e2e09a 100644
--- a/examples/stm32u5/Cargo.toml
+++ b/examples/stm32u5/Cargo.toml
@@ -1,5 +1,4 @@
[package]
-authors = ["Dario Nieuwenhuis <dirbaio@dirbaio.net>"]
edition = "2021"
name = "embassy-stm32u5-examples"
version = "0.1.0"
diff --git a/examples/stm32wb/Cargo.toml b/examples/stm32wb/Cargo.toml
index 3e096a64..812d638f 100644
--- a/examples/stm32wb/Cargo.toml
+++ b/examples/stm32wb/Cargo.toml
@@ -1,5 +1,4 @@
[package]
-authors = ["Dario Nieuwenhuis <dirbaio@dirbaio.net>"]
edition = "2021"
name = "embassy-stm32wb-examples"
version = "0.1.0"
diff --git a/examples/stm32wl/Cargo.toml b/examples/stm32wl/Cargo.toml
index 68f5f137..6be36073 100644
--- a/examples/stm32wl/Cargo.toml
+++ b/examples/stm32wl/Cargo.toml
@@ -1,5 +1,4 @@
[package]
-authors = ["Dario Nieuwenhuis <dirbaio@dirbaio.net>", "Ulf Lilleengen <ulf.lilleengen@gmail.com>"]
edition = "2021"
name = "embassy-stm32wl-examples"
version = "0.1.0"
diff --git a/examples/wasm/Cargo.toml b/examples/wasm/Cargo.toml
index 7d19c9fe..347252fa 100644
--- a/examples/wasm/Cargo.toml
+++ b/examples/wasm/Cargo.toml
@@ -1,5 +1,4 @@
[package]
-authors = ["Ulf Lilleengen <lulf@redhat.com>"]
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 7146a9e9..f92d127e 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 <come.allart@netc.fr>"]
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 e96c8648..df8d6444 100644
--- a/tests/stm32/Cargo.toml
+++ b/tests/stm32/Cargo.toml
@@ -1,5 +1,4 @@
[package]
-authors = ["Dario Nieuwenhuis <dirbaio@dirbaio.net>"]
edition = "2021"
name = "embassy-stm32-tests"
version = "0.1.0"
diff --git a/xtask/Cargo.toml b/xtask/Cargo.toml
index 249cc6aa..d9d6c9b2 100644
--- a/xtask/Cargo.toml
+++ b/xtask/Cargo.toml
@@ -1,8 +1,4 @@
[package]
-authors = [
- "Ulf Lilleengen <lulf@redhat.com>",
- "Bob McWhirter <bmcwhirt@redhat.com>"
-]
edition = "2021"
name = "xtask"
version = "0.1.0"