diff options
author | Dario Nieuwenhuis <dirbaio@dirbaio.net> | 2022-06-18 01:38:12 +0200 |
---|---|---|
committer | Dario Nieuwenhuis <dirbaio@dirbaio.net> | 2022-06-18 02:16:40 +0200 |
commit | 1f746e09390d25dd1e15d61e6ef07029b89fff50 (patch) | |
tree | be9309a2025ea77220206d8fce1dc6525f713950 /embassy-boot | |
parent | 88e36a70bdddaa3ac2ddccd1dcd299b321f8c86c (diff) | |
download | embassy-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".
Diffstat (limited to 'embassy-boot')
-rw-r--r-- | embassy-boot/boot/Cargo.toml | 3 | ||||
-rw-r--r-- | embassy-boot/nrf/Cargo.toml | 3 | ||||
-rw-r--r-- | embassy-boot/stm32/Cargo.toml | 3 |
3 files changed, 0 insertions, 9 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" |