aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2021-11-15 20:11:08 +0100
committerDario Nieuwenhuis <[email protected]>2021-11-15 20:13:22 +0100
commit9b17b3d721299669a3f8fad66f47c29cdc930a70 (patch)
treef0bb2dae33127aea5d919876494bef4cd2a7a5f1 /examples
parentc8f3ec3fba47899b123d0a146e8f9b3808ea4601 (diff)
Remove unused deps
Diffstat (limited to 'examples')
-rw-r--r--examples/nrf/Cargo.toml4
-rw-r--r--examples/rp/Cargo.toml2
-rw-r--r--examples/stm32f0/Cargo.toml3
-rw-r--r--examples/stm32f1/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/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/stm32u5/Cargo.toml1
-rw-r--r--examples/stm32wb55/Cargo.toml1
-rw-r--r--examples/stm32wl55/Cargo.toml1
14 files changed, 4 insertions, 16 deletions
diff --git a/examples/nrf/Cargo.toml b/examples/nrf/Cargo.toml
index 5b4662b4c..5c58541a6 100644
--- a/examples/nrf/Cargo.toml
+++ b/examples/nrf/Cargo.toml
@@ -13,9 +13,9 @@ embassy-nrf = { version = "0.1.0", path = "../../embassy-nrf", features = ["defm
13defmt = "0.3" 13defmt = "0.3"
14defmt-rtt = "0.3" 14defmt-rtt = "0.3"
15 15
16cortex-m = { version = "0.7.3", features = ["inline-asm"] } 16cortex-m = "0.7.3"
17cortex-m-rt = "0.7.0" 17cortex-m-rt = "0.7.0"
18embedded-hal = "0.2.6" 18embedded-hal = "0.2.6"
19panic-probe = { version = "0.3", features = ["print-defmt"] } 19panic-probe = { version = "0.3", features = ["print-defmt"] }
20futures = { version = "0.3.17", default-features = false, features = ["async-await"] } 20futures = { version = "0.3.17", default-features = false, features = ["async-await"] }
21rand = { version = "0.8.4", default-features = false } 21rand = { version = "0.8.4", default-features = false }
diff --git a/examples/rp/Cargo.toml b/examples/rp/Cargo.toml
index 37f41b8e8..b3dfb04dc 100644
--- a/examples/rp/Cargo.toml
+++ b/examples/rp/Cargo.toml
@@ -13,7 +13,7 @@ atomic-polyfill = "0.1.5"
13defmt = "0.3" 13defmt = "0.3"
14defmt-rtt = "0.3" 14defmt-rtt = "0.3"
15 15
16cortex-m = { version = "0.7.3", features = ["inline-asm"] } 16cortex-m = "0.7.3"
17cortex-m-rt = "0.7.0" 17cortex-m-rt = "0.7.0"
18embedded-hal = "0.2.6" 18embedded-hal = "0.2.6"
19panic-probe = { version = "0.3", features = ["print-defmt"] } 19panic-probe = { version = "0.3", features = ["print-defmt"] }
diff --git a/examples/stm32f0/Cargo.toml b/examples/stm32f0/Cargo.toml
index dcc2e206c..f13ef0949 100644
--- a/examples/stm32f0/Cargo.toml
+++ b/examples/stm32f0/Cargo.toml
@@ -8,12 +8,11 @@ resolver = "2"
8# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 8# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
9 9
10[dependencies] 10[dependencies]
11cortex-m = { version = "0.7.3", features = ["inline-asm"] } 11cortex-m = "0.7.3"
12cortex-m-rt = "0.7.0" 12cortex-m-rt = "0.7.0"
13defmt = "0.3" 13defmt = "0.3"
14defmt-rtt = "0.3" 14defmt-rtt = "0.3"
15panic-probe = "0.3" 15panic-probe = "0.3"
16rtt-target = { version = "0.3.1", features = ["cortex-m"] }
17embassy = { path = "../../embassy", features = ["defmt"] } 16embassy = { path = "../../embassy", features = ["defmt"] }
18embassy-stm32 = { path = "../../embassy-stm32", features = ["defmt", "memory-x", "stm32f030f4", "time-driver-tim3"] } 17embassy-stm32 = { path = "../../embassy-stm32", features = ["defmt", "memory-x", "stm32f030f4", "time-driver-tim3"] }
19 18
diff --git a/examples/stm32f1/Cargo.toml b/examples/stm32f1/Cargo.toml
index 0edfacd91..37def50ab 100644
--- a/examples/stm32f1/Cargo.toml
+++ b/examples/stm32f1/Cargo.toml
@@ -19,6 +19,5 @@ cortex-m-rt = "0.7.0"
19embedded-hal = "0.2.6" 19embedded-hal = "0.2.6"
20panic-probe = { version = "0.3", features = ["print-defmt"] } 20panic-probe = { version = "0.3", features = ["print-defmt"] }
21futures = { version = "0.3.17", default-features = false, features = ["async-await"] } 21futures = { version = "0.3.17", default-features = false, features = ["async-await"] }
22rtt-target = { version = "0.3.1", features = ["cortex-m"] }
23heapless = { version = "0.7.5", default-features = false } 22heapless = { version = "0.7.5", default-features = false }
24nb = "1.0.0" 23nb = "1.0.0"
diff --git a/examples/stm32f4/Cargo.toml b/examples/stm32f4/Cargo.toml
index ef57acf01..48c3148c6 100644
--- a/examples/stm32f4/Cargo.toml
+++ b/examples/stm32f4/Cargo.toml
@@ -20,6 +20,5 @@ cortex-m-rt = "0.7.0"
20embedded-hal = "0.2.6" 20embedded-hal = "0.2.6"
21panic-probe = { version = "0.3", features = ["print-defmt"] } 21panic-probe = { version = "0.3", features = ["print-defmt"] }
22futures = { version = "0.3.17", default-features = false, features = ["async-await"] } 22futures = { version = "0.3.17", default-features = false, features = ["async-await"] }
23rtt-target = { version = "0.3.1", features = ["cortex-m"] }
24heapless = { version = "0.7.5", default-features = false } 23heapless = { version = "0.7.5", default-features = false }
25nb = "1.0.0" 24nb = "1.0.0"
diff --git a/examples/stm32f7/Cargo.toml b/examples/stm32f7/Cargo.toml
index 8d7710c44..6e9701463 100644
--- a/examples/stm32f7/Cargo.toml
+++ b/examples/stm32f7/Cargo.toml
@@ -21,7 +21,6 @@ cortex-m-rt = "0.7.0"
21embedded-hal = "0.2.6" 21embedded-hal = "0.2.6"
22panic-probe = { version = "0.3", features = ["print-defmt"] } 22panic-probe = { version = "0.3", features = ["print-defmt"] }
23futures = { version = "0.3.17", default-features = false, features = ["async-await"] } 23futures = { version = "0.3.17", default-features = false, features = ["async-await"] }
24rtt-target = { version = "0.3.1", features = ["cortex-m"] }
25heapless = { version = "0.7.5", default-features = false } 24heapless = { version = "0.7.5", default-features = false }
26nb = "1.0.0" 25nb = "1.0.0"
27rand_core = "0.6.3" 26rand_core = "0.6.3"
diff --git a/examples/stm32g0/Cargo.toml b/examples/stm32g0/Cargo.toml
index c7f5d41bb..203cdad99 100644
--- a/examples/stm32g0/Cargo.toml
+++ b/examples/stm32g0/Cargo.toml
@@ -19,5 +19,4 @@ cortex-m-rt = "0.7.0"
19embedded-hal = "0.2.6" 19embedded-hal = "0.2.6"
20panic-probe = { version = "0.3", features = ["print-defmt"] } 20panic-probe = { version = "0.3", features = ["print-defmt"] }
21futures = { version = "0.3.17", default-features = false, features = ["async-await"] } 21futures = { version = "0.3.17", default-features = false, features = ["async-await"] }
22rtt-target = { version = "0.3.1", features = ["cortex-m"] }
23heapless = { version = "0.7.5", default-features = false } 22heapless = { version = "0.7.5", default-features = false }
diff --git a/examples/stm32h7/Cargo.toml b/examples/stm32h7/Cargo.toml
index 6b51f2ab8..345b8bfe9 100644
--- a/examples/stm32h7/Cargo.toml
+++ b/examples/stm32h7/Cargo.toml
@@ -23,7 +23,6 @@ cortex-m-rt = "0.7.0"
23embedded-hal = "0.2.6" 23embedded-hal = "0.2.6"
24panic-probe = { version = "0.3", features = ["print-defmt"] } 24panic-probe = { version = "0.3", features = ["print-defmt"] }
25futures = { version = "0.3.17", default-features = false, features = ["async-await"] } 25futures = { version = "0.3.17", default-features = false, features = ["async-await"] }
26rtt-target = { version = "0.3.1", features = ["cortex-m"] }
27heapless = { version = "0.7.5", default-features = false } 26heapless = { version = "0.7.5", default-features = false }
28rand_core = "0.6.3" 27rand_core = "0.6.3"
29critical-section = "0.2.5" 28critical-section = "0.2.5"
diff --git a/examples/stm32l0/Cargo.toml b/examples/stm32l0/Cargo.toml
index 70493b469..b16492e19 100644
--- a/examples/stm32l0/Cargo.toml
+++ b/examples/stm32l0/Cargo.toml
@@ -24,5 +24,4 @@ cortex-m-rt = "0.7.0"
24embedded-hal = "0.2.6" 24embedded-hal = "0.2.6"
25panic-probe = { version = "0.3", features = ["print-defmt"] } 25panic-probe = { version = "0.3", features = ["print-defmt"] }
26futures = { version = "0.3.17", default-features = false, features = ["async-await"] } 26futures = { version = "0.3.17", default-features = false, features = ["async-await"] }
27rtt-target = { version = "0.3.1", features = ["cortex-m"] }
28heapless = { version = "0.7.5", default-features = false } 27heapless = { version = "0.7.5", default-features = false }
diff --git a/examples/stm32l1/Cargo.toml b/examples/stm32l1/Cargo.toml
index f9d3b29ea..190917d17 100644
--- a/examples/stm32l1/Cargo.toml
+++ b/examples/stm32l1/Cargo.toml
@@ -20,5 +20,4 @@ cortex-m-rt = "0.7.0"
20embedded-hal = "0.2.6" 20embedded-hal = "0.2.6"
21panic-probe = { version = "0.3", features = ["print-defmt"] } 21panic-probe = { version = "0.3", features = ["print-defmt"] }
22futures = { version = "0.3.17", default-features = false, features = ["async-await"] } 22futures = { version = "0.3.17", default-features = false, features = ["async-await"] }
23rtt-target = { version = "0.3.1", features = ["cortex-m"] }
24heapless = { version = "0.7.5", default-features = false } 23heapless = { version = "0.7.5", default-features = false }
diff --git a/examples/stm32l4/Cargo.toml b/examples/stm32l4/Cargo.toml
index c6862b211..caab99b50 100644
--- a/examples/stm32l4/Cargo.toml
+++ b/examples/stm32l4/Cargo.toml
@@ -21,7 +21,6 @@ cortex-m-rt = "0.7.0"
21embedded-hal = "0.2.6" 21embedded-hal = "0.2.6"
22panic-probe = { version = "0.3", features = ["print-defmt"] } 22panic-probe = { version = "0.3", features = ["print-defmt"] }
23futures = { version = "0.3.17", default-features = false, features = ["async-await"] } 23futures = { version = "0.3.17", default-features = false, features = ["async-await"] }
24rtt-target = { version = "0.3.1", features = ["cortex-m"] }
25heapless = { version = "0.7.5", default-features = false } 24heapless = { version = "0.7.5", default-features = false }
26 25
27micromath = "2.0.0" 26micromath = "2.0.0"
diff --git a/examples/stm32u5/Cargo.toml b/examples/stm32u5/Cargo.toml
index 1a5facdab..3503eccd3 100644
--- a/examples/stm32u5/Cargo.toml
+++ b/examples/stm32u5/Cargo.toml
@@ -19,7 +19,6 @@ cortex-m-rt = "0.7.0"
19embedded-hal = "0.2.6" 19embedded-hal = "0.2.6"
20panic-probe = { version = "0.3", features = ["print-defmt"] } 20panic-probe = { version = "0.3", features = ["print-defmt"] }
21futures = { version = "0.3.17", default-features = false, features = ["async-await"] } 21futures = { version = "0.3.17", default-features = false, features = ["async-await"] }
22rtt-target = { version = "0.3.1", features = ["cortex-m"] }
23heapless = { version = "0.7.5", default-features = false } 22heapless = { version = "0.7.5", default-features = false }
24 23
25micromath = "2.0.0" 24micromath = "2.0.0"
diff --git a/examples/stm32wb55/Cargo.toml b/examples/stm32wb55/Cargo.toml
index 1b03bd486..976ad012f 100644
--- a/examples/stm32wb55/Cargo.toml
+++ b/examples/stm32wb55/Cargo.toml
@@ -19,5 +19,4 @@ cortex-m-rt = "0.7.0"
19embedded-hal = "0.2.6" 19embedded-hal = "0.2.6"
20panic-probe = { version = "0.3", features = ["print-defmt"] } 20panic-probe = { version = "0.3", features = ["print-defmt"] }
21futures = { version = "0.3.17", default-features = false, features = ["async-await"] } 21futures = { version = "0.3.17", default-features = false, features = ["async-await"] }
22rtt-target = { version = "0.3.1", features = ["cortex-m"] }
23heapless = { version = "0.7.5", default-features = false } 22heapless = { version = "0.7.5", default-features = false }
diff --git a/examples/stm32wl55/Cargo.toml b/examples/stm32wl55/Cargo.toml
index 00b46696a..69b97cbed 100644
--- a/examples/stm32wl55/Cargo.toml
+++ b/examples/stm32wl55/Cargo.toml
@@ -23,5 +23,4 @@ cortex-m-rt = "0.7.0"
23embedded-hal = "0.2.6" 23embedded-hal = "0.2.6"
24panic-probe = { version = "0.3", features = ["print-defmt"] } 24panic-probe = { version = "0.3", features = ["print-defmt"] }
25futures = { version = "0.3.17", default-features = false, features = ["async-await"] } 25futures = { version = "0.3.17", default-features = false, features = ["async-await"] }
26rtt-target = { version = "0.3.1", features = ["cortex-m"] }
27heapless = { version = "0.7.5", default-features = false } 26heapless = { version = "0.7.5", default-features = false }