diff options
| author | Dario Nieuwenhuis <[email protected]> | 2022-06-18 01:38:12 +0200 |
|---|---|---|
| committer | Dario Nieuwenhuis <[email protected]> | 2022-06-18 02:16:40 +0200 |
| commit | 1f746e09390d25dd1e15d61e6ef07029b89fff50 (patch) | |
| tree | be9309a2025ea77220206d8fce1dc6525f713950 /examples | |
| parent | 88e36a70bdddaa3ac2ddccd1dcd299b321f8c86c (diff) | |
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".
Diffstat (limited to 'examples')
28 files changed, 0 insertions, 28 deletions
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 @@ | |||
| 1 | [package] | 1 | [package] |
| 2 | authors = ["Ulf Lilleengen <[email protected]>"] | ||
| 3 | edition = "2021" | 2 | edition = "2021" |
| 4 | name = "embassy-boot-nrf-examples" | 3 | name = "embassy-boot-nrf-examples" |
| 5 | version = "0.1.0" | 4 | 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 @@ | |||
| 1 | [package] | 1 | [package] |
| 2 | authors = ["Ulf Lilleengen <[email protected]>"] | ||
| 3 | edition = "2021" | 2 | edition = "2021" |
| 4 | name = "embassy-boot-stm32f3-examples" | 3 | name = "embassy-boot-stm32f3-examples" |
| 5 | version = "0.1.0" | 4 | 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 @@ | |||
| 1 | [package] | 1 | [package] |
| 2 | authors = ["Ulf Lilleengen <[email protected]>"] | ||
| 3 | edition = "2021" | 2 | edition = "2021" |
| 4 | name = "embassy-boot-stm32f7-examples" | 3 | name = "embassy-boot-stm32f7-examples" |
| 5 | version = "0.1.0" | 4 | 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 @@ | |||
| 1 | [package] | 1 | [package] |
| 2 | authors = ["Ulf Lilleengen <[email protected]>"] | ||
| 3 | edition = "2021" | 2 | edition = "2021" |
| 4 | name = "embassy-boot-stm32f7-examples" | 3 | name = "embassy-boot-stm32f7-examples" |
| 5 | version = "0.1.0" | 4 | 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 @@ | |||
| 1 | [package] | 1 | [package] |
| 2 | authors = ["Ulf Lilleengen <[email protected]>"] | ||
| 3 | edition = "2021" | 2 | edition = "2021" |
| 4 | name = "embassy-boot-stm32l0-examples" | 3 | name = "embassy-boot-stm32l0-examples" |
| 5 | version = "0.1.0" | 4 | 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 @@ | |||
| 1 | [package] | 1 | [package] |
| 2 | authors = ["Ulf Lilleengen <[email protected]>"] | ||
| 3 | edition = "2021" | 2 | edition = "2021" |
| 4 | name = "embassy-boot-stm32l1-examples" | 3 | name = "embassy-boot-stm32l1-examples" |
| 5 | version = "0.1.0" | 4 | 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 @@ | |||
| 1 | [package] | 1 | [package] |
| 2 | authors = ["Ulf Lilleengen <[email protected]>"] | ||
| 3 | edition = "2021" | 2 | edition = "2021" |
| 4 | name = "embassy-boot-stm32l4-examples" | 3 | name = "embassy-boot-stm32l4-examples" |
| 5 | version = "0.1.0" | 4 | 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 @@ | |||
| 1 | [package] | 1 | [package] |
| 2 | authors = ["Ulf Lilleengen <[email protected]>"] | ||
| 3 | edition = "2021" | 2 | edition = "2021" |
| 4 | name = "embassy-boot-stm32wl-examples" | 3 | name = "embassy-boot-stm32wl-examples" |
| 5 | version = "0.1.0" | 4 | 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 @@ | |||
| 1 | [package] | 1 | [package] |
| 2 | authors = ["Dario Nieuwenhuis <[email protected]>"] | ||
| 3 | edition = "2021" | 2 | edition = "2021" |
| 4 | name = "embassy-nrf-examples" | 3 | name = "embassy-nrf-examples" |
| 5 | version = "0.1.0" | 4 | 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 @@ | |||
| 1 | [package] | 1 | [package] |
| 2 | authors = ["Dario Nieuwenhuis <[email protected]>"] | ||
| 3 | edition = "2021" | 2 | edition = "2021" |
| 4 | name = "embassy-rp-examples" | 3 | name = "embassy-rp-examples" |
| 5 | version = "0.1.0" | 4 | 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 @@ | |||
| 1 | [package] | 1 | [package] |
| 2 | authors = ["Dario Nieuwenhuis <[email protected]>"] | ||
| 3 | edition = "2021" | 2 | edition = "2021" |
| 4 | name = "embassy-std-examples" | 3 | name = "embassy-std-examples" |
| 5 | version = "0.1.0" | 4 | 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 @@ | |||
| 1 | [package] | 1 | [package] |
| 2 | name = "embassy-stm32f0-examples" | 2 | name = "embassy-stm32f0-examples" |
| 3 | version = "0.1.0" | 3 | version = "0.1.0" |
| 4 | authors = ["Thales Fragoso <[email protected]>"] | ||
| 5 | edition = "2021" | 4 | edition = "2021" |
| 6 | 5 | ||
| 7 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | 6 | # 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 @@ | |||
| 1 | [package] | 1 | [package] |
| 2 | authors = ["Dario Nieuwenhuis <[email protected]>"] | ||
| 3 | edition = "2021" | 2 | edition = "2021" |
| 4 | name = "embassy-stm32f1-examples" | 3 | name = "embassy-stm32f1-examples" |
| 5 | version = "0.1.0" | 4 | 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 @@ | |||
| 1 | [package] | 1 | [package] |
| 2 | authors = ["Dario Nieuwenhuis <[email protected]>"] | ||
| 3 | edition = "2021" | 2 | edition = "2021" |
| 4 | name = "embassy-stm32f2-examples" | 3 | name = "embassy-stm32f2-examples" |
| 5 | version = "0.1.0" | 4 | 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 @@ | |||
| 1 | [package] | 1 | [package] |
| 2 | authors = ["Dario Nieuwenhuis <[email protected]>"] | ||
| 3 | edition = "2021" | 2 | edition = "2021" |
| 4 | name = "embassy-stm32f3-examples" | 3 | name = "embassy-stm32f3-examples" |
| 5 | version = "0.1.0" | 4 | 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 @@ | |||
| 1 | [package] | 1 | [package] |
| 2 | authors = ["Dario Nieuwenhuis <[email protected]>"] | ||
| 3 | edition = "2021" | 2 | edition = "2021" |
| 4 | name = "embassy-stm32f4-examples" | 3 | name = "embassy-stm32f4-examples" |
| 5 | version = "0.1.0" | 4 | 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 @@ | |||
| 1 | [package] | 1 | [package] |
| 2 | authors = ["Dario Nieuwenhuis <[email protected]>"] | ||
| 3 | edition = "2021" | 2 | edition = "2021" |
| 4 | name = "embassy-stm32f7-examples" | 3 | name = "embassy-stm32f7-examples" |
| 5 | version = "0.1.0" | 4 | 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 @@ | |||
| 1 | [package] | 1 | [package] |
| 2 | authors = ["Dario Nieuwenhuis <[email protected]>", "Ben Gamari <[email protected]>"] | ||
| 3 | edition = "2021" | 2 | edition = "2021" |
| 4 | name = "embassy-stm32g0-examples" | 3 | name = "embassy-stm32g0-examples" |
| 5 | version = "0.1.0" | 4 | 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 @@ | |||
| 1 | [package] | 1 | [package] |
| 2 | authors = ["Dario Nieuwenhuis <[email protected]>", "Ben Gamari <[email protected]>"] | ||
| 3 | edition = "2021" | 2 | edition = "2021" |
| 4 | name = "embassy-stm32g4-examples" | 3 | name = "embassy-stm32g4-examples" |
| 5 | version = "0.1.0" | 4 | 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 @@ | |||
| 1 | [package] | 1 | [package] |
| 2 | authors = ["Dario Nieuwenhuis <[email protected]>"] | ||
| 3 | edition = "2021" | 2 | edition = "2021" |
| 4 | name = "embassy-stm32h7-examples" | 3 | name = "embassy-stm32h7-examples" |
| 5 | version = "0.1.0" | 4 | 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 @@ | |||
| 1 | [package] | 1 | [package] |
| 2 | authors = ["Dario Nieuwenhuis <[email protected]>", "Ulf Lilleengen <[email protected]>"] | ||
| 3 | edition = "2021" | 2 | edition = "2021" |
| 4 | name = "embassy-stm32l0-examples" | 3 | name = "embassy-stm32l0-examples" |
| 5 | version = "0.1.0" | 4 | 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 @@ | |||
| 1 | [package] | 1 | [package] |
| 2 | authors = ["Dario Nieuwenhuis <[email protected]>", "Ulf Lilleengen <[email protected]>"] | ||
| 3 | edition = "2021" | 2 | edition = "2021" |
| 4 | name = "embassy-stm32l1-examples" | 3 | name = "embassy-stm32l1-examples" |
| 5 | version = "0.1.0" | 4 | 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 @@ | |||
| 1 | [package] | 1 | [package] |
| 2 | authors = ["Dario Nieuwenhuis <[email protected]>"] | ||
| 3 | edition = "2021" | 2 | edition = "2021" |
| 4 | name = "embassy-stm32l4-examples" | 3 | name = "embassy-stm32l4-examples" |
| 5 | version = "0.1.0" | 4 | 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 @@ | |||
| 1 | [package] | 1 | [package] |
| 2 | authors = ["Dario Nieuwenhuis <[email protected]>"] | ||
| 3 | edition = "2021" | 2 | edition = "2021" |
| 4 | name = "embassy-stm32l5-examples" | 3 | name = "embassy-stm32l5-examples" |
| 5 | version = "0.1.0" | 4 | 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 @@ | |||
| 1 | [package] | 1 | [package] |
| 2 | authors = ["Dario Nieuwenhuis <[email protected]>"] | ||
| 3 | edition = "2021" | 2 | edition = "2021" |
| 4 | name = "embassy-stm32u5-examples" | 3 | name = "embassy-stm32u5-examples" |
| 5 | version = "0.1.0" | 4 | 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 @@ | |||
| 1 | [package] | 1 | [package] |
| 2 | authors = ["Dario Nieuwenhuis <[email protected]>"] | ||
| 3 | edition = "2021" | 2 | edition = "2021" |
| 4 | name = "embassy-stm32wb-examples" | 3 | name = "embassy-stm32wb-examples" |
| 5 | version = "0.1.0" | 4 | 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 @@ | |||
| 1 | [package] | 1 | [package] |
| 2 | authors = ["Dario Nieuwenhuis <[email protected]>", "Ulf Lilleengen <[email protected]>"] | ||
| 3 | edition = "2021" | 2 | edition = "2021" |
| 4 | name = "embassy-stm32wl-examples" | 3 | name = "embassy-stm32wl-examples" |
| 5 | version = "0.1.0" | 4 | 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 @@ | |||
| 1 | [package] | 1 | [package] |
| 2 | authors = ["Ulf Lilleengen <[email protected]>"] | ||
| 3 | edition = "2021" | 2 | edition = "2021" |
| 4 | name = "embassy-wasm-example" | 3 | name = "embassy-wasm-example" |
| 5 | version = "0.1.0" | 4 | version = "0.1.0" |
