aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2021-01-20 04:32:14 +0100
committerDario Nieuwenhuis <[email protected]>2021-01-21 01:07:04 +0100
commit27831124a761e89563c50c4ca41005fe4cac720e (patch)
tree4c724db83e1cc5635fb35b233a29996d0d44d717
parent5b897b6605e571adb148ff1a35ea7ab3973861b0 (diff)
Remove unused rtic dep
-rw-r--r--embassy-nrf-examples/Cargo.toml3
-rw-r--r--embassy-stm32f4-examples/Cargo.toml1
2 files changed, 1 insertions, 3 deletions
diff --git a/embassy-nrf-examples/Cargo.toml b/embassy-nrf-examples/Cargo.toml
index 0c812db1d..89d0cabb4 100644
--- a/embassy-nrf-examples/Cargo.toml
+++ b/embassy-nrf-examples/Cargo.toml
@@ -28,5 +28,4 @@ cortex-m-rt = "0.6.13"
28embedded-hal = { version = "0.2.4" } 28embedded-hal = { version = "0.2.4" }
29panic-probe = "0.1.0" 29panic-probe = "0.1.0"
30nrf52840-hal = { version = "0.12.0" } 30nrf52840-hal = { version = "0.12.0" }
31futures = { version = "0.3.8", default-features = false, features = ["async-await"] } 31futures = { version = "0.3.8", default-features = false, features = ["async-await"] } \ No newline at end of file
32cortex-m-rtic = { git = "https://github.com/rtic-rs/cortex-m-rtic", branch = "master"}
diff --git a/embassy-stm32f4-examples/Cargo.toml b/embassy-stm32f4-examples/Cargo.toml
index 72fd64364..dccde1d0b 100644
--- a/embassy-stm32f4-examples/Cargo.toml
+++ b/embassy-stm32f4-examples/Cargo.toml
@@ -29,5 +29,4 @@ embedded-hal = { version = "0.2.4" }
29panic-probe = "0.1.0" 29panic-probe = "0.1.0"
30stm32f4xx-hal = { version = "0.8.3", features = ["rt", "stm32f405"], git = "https://github.com/stm32-rs/stm32f4xx-hal.git"} 30stm32f4xx-hal = { version = "0.8.3", features = ["rt", "stm32f405"], git = "https://github.com/stm32-rs/stm32f4xx-hal.git"}
31futures = { version = "0.3.8", default-features = false, features = ["async-await"] } 31futures = { version = "0.3.8", default-features = false, features = ["async-await"] }
32cortex-m-rtic = "0.5"
33rtt-target = { version = "0.3", features = ["cortex-m"] } 32rtt-target = { version = "0.3", features = ["cortex-m"] }