aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2022-06-18 17:33:29 +0200
committerGitHub <[email protected]>2022-06-18 17:33:29 +0200
commit6852e05c59bece57b10659531665187f073b40be (patch)
tree322d846ffa9cfae401eb076dbd3d6b7e47e1647f
parent3fd4ee34ecd5bae94a4ccf14f0322d6d94a4e297 (diff)
parent1f746e09390d25dd1e15d61e6ef07029b89fff50 (diff)
Merge pull request #822 from embassy-rs/remove-authors
Remove the authors field from Cargo.tomls
-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 7ceb5885b..5bb2c34b3 100644
--- a/embassy-boot/boot/Cargo.toml
+++ b/embassy-boot/boot/Cargo.toml
@@ -1,7 +1,4 @@
1[package] 1[package]
2authors = [
3 "Ulf Lilleengen <[email protected]>",
4]
5edition = "2021" 2edition = "2021"
6name = "embassy-boot" 3name = "embassy-boot"
7version = "0.1.0" 4version = "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 @@
1[package] 1[package]
2authors = [
3 "Ulf Lilleengen <[email protected]>",
4]
5edition = "2021" 2edition = "2021"
6name = "embassy-boot-nrf" 3name = "embassy-boot-nrf"
7version = "0.1.0" 4version = "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 @@
1[package] 1[package]
2authors = [
3 "Ulf Lilleengen <[email protected]>",
4]
5edition = "2021" 2edition = "2021"
6name = "embassy-boot-stm32" 3name = "embassy-boot-stm32"
7version = "0.1.0" 4version = "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 @@
1[package] 1[package]
2name = "embassy-cortex-m" 2name = "embassy-cortex-m"
3version = "0.1.0" 3version = "0.1.0"
4authors = ["Dario Nieuwenhuis <[email protected]>"]
5edition = "2021" 4edition = "2021"
6 5
7[package.metadata.embassy_docs] 6[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 @@
1[package] 1[package]
2name = "embassy-embedded-hal" 2name = "embassy-embedded-hal"
3version = "0.1.0" 3version = "0.1.0"
4authors = ["Dario Nieuwenhuis <[email protected]>"]
5edition = "2021" 4edition = "2021"
6 5
7[features] 6[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 @@
1[package] 1[package]
2name = "embassy-hal-common" 2name = "embassy-hal-common"
3version = "0.1.0" 3version = "0.1.0"
4authors = ["Dario Nieuwenhuis <[email protected]>"]
5edition = "2021" 4edition = "2021"
6 5
7[features] 6[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 @@
1[package] 1[package]
2name = "embassy-lora" 2name = "embassy-lora"
3version = "0.1.0" 3version = "0.1.0"
4authors = ["Ulf Lilleengen <[email protected]>"]
5edition = "2021" 4edition = "2021"
6 5
7[package.metadata.embassy_docs] 6[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 @@
1[package] 1[package]
2name = "embassy-macros" 2name = "embassy-macros"
3version = "0.1.0" 3version = "0.1.0"
4authors = ["Dario Nieuwenhuis <[email protected]>"]
5edition = "2021" 4edition = "2021"
6 5
7[dependencies] 6[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 @@
1[package] 1[package]
2name = "embassy-net" 2name = "embassy-net"
3version = "0.1.0" 3version = "0.1.0"
4authors = ["Dario Nieuwenhuis <[email protected]>"]
5edition = "2021" 4edition = "2021"
6 5
7 6
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 @@
1[package] 1[package]
2name = "embassy-nrf" 2name = "embassy-nrf"
3version = "0.1.0" 3version = "0.1.0"
4authors = ["Dario Nieuwenhuis <[email protected]>"]
5edition = "2021" 4edition = "2021"
6 5
7[package.metadata.embassy_docs] 6[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 @@
1[package] 1[package]
2name = "embassy-rp" 2name = "embassy-rp"
3version = "0.1.0" 3version = "0.1.0"
4authors = ["Dario Nieuwenhuis <[email protected]>"]
5edition = "2021" 4edition = "2021"
6 5
7[package.metadata.embassy_docs] 6[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 @@
1[package] 1[package]
2name = "embassy-stm32" 2name = "embassy-stm32"
3version = "0.1.0" 3version = "0.1.0"
4authors = ["Dario Nieuwenhuis <[email protected]>"]
5edition = "2021" 4edition = "2021"
6 5
7[package.metadata.embassy_docs] 6[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 @@
1[package] 1[package]
2name = "embassy" 2name = "embassy"
3version = "0.1.0" 3version = "0.1.0"
4authors = ["Dario Nieuwenhuis <[email protected]>"]
5edition = "2021" 4edition = "2021"
6 5
7[package.metadata.embassy_docs] 6[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 @@
1[package] 1[package]
2authors = ["Ulf Lilleengen <[email protected]>"]
3edition = "2021" 2edition = "2021"
4name = "embassy-boot-nrf-examples" 3name = "embassy-boot-nrf-examples"
5version = "0.1.0" 4version = "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]
2authors = ["Ulf Lilleengen <[email protected]>"]
3edition = "2021" 2edition = "2021"
4name = "embassy-boot-stm32f3-examples" 3name = "embassy-boot-stm32f3-examples"
5version = "0.1.0" 4version = "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]
2authors = ["Ulf Lilleengen <[email protected]>"]
3edition = "2021" 2edition = "2021"
4name = "embassy-boot-stm32f7-examples" 3name = "embassy-boot-stm32f7-examples"
5version = "0.1.0" 4version = "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]
2authors = ["Ulf Lilleengen <[email protected]>"]
3edition = "2021" 2edition = "2021"
4name = "embassy-boot-stm32f7-examples" 3name = "embassy-boot-stm32f7-examples"
5version = "0.1.0" 4version = "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]
2authors = ["Ulf Lilleengen <[email protected]>"]
3edition = "2021" 2edition = "2021"
4name = "embassy-boot-stm32l0-examples" 3name = "embassy-boot-stm32l0-examples"
5version = "0.1.0" 4version = "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]
2authors = ["Ulf Lilleengen <[email protected]>"]
3edition = "2021" 2edition = "2021"
4name = "embassy-boot-stm32l1-examples" 3name = "embassy-boot-stm32l1-examples"
5version = "0.1.0" 4version = "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]
2authors = ["Ulf Lilleengen <[email protected]>"]
3edition = "2021" 2edition = "2021"
4name = "embassy-boot-stm32l4-examples" 3name = "embassy-boot-stm32l4-examples"
5version = "0.1.0" 4version = "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]
2authors = ["Ulf Lilleengen <[email protected]>"]
3edition = "2021" 2edition = "2021"
4name = "embassy-boot-stm32wl-examples" 3name = "embassy-boot-stm32wl-examples"
5version = "0.1.0" 4version = "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]
2authors = ["Dario Nieuwenhuis <[email protected]>"]
3edition = "2021" 2edition = "2021"
4name = "embassy-nrf-examples" 3name = "embassy-nrf-examples"
5version = "0.1.0" 4version = "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]
2authors = ["Dario Nieuwenhuis <[email protected]>"]
3edition = "2021" 2edition = "2021"
4name = "embassy-rp-examples" 3name = "embassy-rp-examples"
5version = "0.1.0" 4version = "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]
2authors = ["Dario Nieuwenhuis <[email protected]>"]
3edition = "2021" 2edition = "2021"
4name = "embassy-std-examples" 3name = "embassy-std-examples"
5version = "0.1.0" 4version = "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]
2name = "embassy-stm32f0-examples" 2name = "embassy-stm32f0-examples"
3version = "0.1.0" 3version = "0.1.0"
4authors = ["Thales Fragoso <[email protected]>"]
5edition = "2021" 4edition = "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]
2authors = ["Dario Nieuwenhuis <[email protected]>"]
3edition = "2021" 2edition = "2021"
4name = "embassy-stm32f1-examples" 3name = "embassy-stm32f1-examples"
5version = "0.1.0" 4version = "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]
2authors = ["Dario Nieuwenhuis <[email protected]>"]
3edition = "2021" 2edition = "2021"
4name = "embassy-stm32f2-examples" 3name = "embassy-stm32f2-examples"
5version = "0.1.0" 4version = "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]
2authors = ["Dario Nieuwenhuis <[email protected]>"]
3edition = "2021" 2edition = "2021"
4name = "embassy-stm32f3-examples" 3name = "embassy-stm32f3-examples"
5version = "0.1.0" 4version = "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]
2authors = ["Dario Nieuwenhuis <[email protected]>"]
3edition = "2021" 2edition = "2021"
4name = "embassy-stm32f4-examples" 3name = "embassy-stm32f4-examples"
5version = "0.1.0" 4version = "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]
2authors = ["Dario Nieuwenhuis <[email protected]>"]
3edition = "2021" 2edition = "2021"
4name = "embassy-stm32f7-examples" 3name = "embassy-stm32f7-examples"
5version = "0.1.0" 4version = "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]
2authors = ["Dario Nieuwenhuis <[email protected]>", "Ben Gamari <[email protected]>"]
3edition = "2021" 2edition = "2021"
4name = "embassy-stm32g0-examples" 3name = "embassy-stm32g0-examples"
5version = "0.1.0" 4version = "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]
2authors = ["Dario Nieuwenhuis <[email protected]>", "Ben Gamari <[email protected]>"]
3edition = "2021" 2edition = "2021"
4name = "embassy-stm32g4-examples" 3name = "embassy-stm32g4-examples"
5version = "0.1.0" 4version = "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]
2authors = ["Dario Nieuwenhuis <[email protected]>"]
3edition = "2021" 2edition = "2021"
4name = "embassy-stm32h7-examples" 3name = "embassy-stm32h7-examples"
5version = "0.1.0" 4version = "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]
2authors = ["Dario Nieuwenhuis <[email protected]>", "Ulf Lilleengen <[email protected]>"]
3edition = "2021" 2edition = "2021"
4name = "embassy-stm32l0-examples" 3name = "embassy-stm32l0-examples"
5version = "0.1.0" 4version = "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]
2authors = ["Dario Nieuwenhuis <[email protected]>", "Ulf Lilleengen <[email protected]>"]
3edition = "2021" 2edition = "2021"
4name = "embassy-stm32l1-examples" 3name = "embassy-stm32l1-examples"
5version = "0.1.0" 4version = "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]
2authors = ["Dario Nieuwenhuis <[email protected]>"]
3edition = "2021" 2edition = "2021"
4name = "embassy-stm32l4-examples" 3name = "embassy-stm32l4-examples"
5version = "0.1.0" 4version = "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]
2authors = ["Dario Nieuwenhuis <[email protected]>"]
3edition = "2021" 2edition = "2021"
4name = "embassy-stm32l5-examples" 3name = "embassy-stm32l5-examples"
5version = "0.1.0" 4version = "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]
2authors = ["Dario Nieuwenhuis <[email protected]>"]
3edition = "2021" 2edition = "2021"
4name = "embassy-stm32u5-examples" 3name = "embassy-stm32u5-examples"
5version = "0.1.0" 4version = "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]
2authors = ["Dario Nieuwenhuis <[email protected]>"]
3edition = "2021" 2edition = "2021"
4name = "embassy-stm32wb-examples" 3name = "embassy-stm32wb-examples"
5version = "0.1.0" 4version = "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]
2authors = ["Dario Nieuwenhuis <[email protected]>", "Ulf Lilleengen <[email protected]>"]
3edition = "2021" 2edition = "2021"
4name = "embassy-stm32wl-examples" 3name = "embassy-stm32wl-examples"
5version = "0.1.0" 4version = "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]
2authors = ["Ulf Lilleengen <[email protected]>"]
3edition = "2021" 2edition = "2021"
4name = "embassy-wasm-example" 3name = "embassy-wasm-example"
5version = "0.1.0" 4version = "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 @@
1[package] 1[package]
2name = "gen_features" 2name = "gen_features"
3version = "0.1.0" 3version = "0.1.0"
4authors = ["Côme ALLART <[email protected]>"]
5edition = "2021" 4edition = "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/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 @@
1[package] 1[package]
2authors = ["Dario Nieuwenhuis <[email protected]>"]
3edition = "2021" 2edition = "2021"
4name = "embassy-stm32-tests" 3name = "embassy-stm32-tests"
5version = "0.1.0" 4version = "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 @@
1[package] 1[package]
2authors = [
3 "Ulf Lilleengen <[email protected]>",
4 "Bob McWhirter <[email protected]>"
5]
6edition = "2021" 2edition = "2021"
7name = "xtask" 3name = "xtask"
8version = "0.1.0" 4version = "0.1.0"