aboutsummaryrefslogtreecommitdiff
path: root/docs/examples/layer-by-layer/blinky-async/Cargo.toml
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2025-02-11 12:22:24 +0100
committerGitHub <[email protected]>2025-02-11 12:22:24 +0100
commit05bbb99603e16dd58604bfd1b59871eb551c74a3 (patch)
tree0ed12675f9923e0190834e15c95273a13fb76dff /docs/examples/layer-by-layer/blinky-async/Cargo.toml
parent76fb3a54f38c20f1b16de60da12d21d98bf250fd (diff)
parent01b7ff8ff04af62cc04331a229f5305d320907fe (diff)
Merge pull request #3870 from kkrolczyk/kk/mostly-docu-changes-and-examples-fix
dfu documentation update, fix a couple issues
Diffstat (limited to 'docs/examples/layer-by-layer/blinky-async/Cargo.toml')
-rw-r--r--docs/examples/layer-by-layer/blinky-async/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/examples/layer-by-layer/blinky-async/Cargo.toml b/docs/examples/layer-by-layer/blinky-async/Cargo.toml
index 51ddf87d4..541eb6edf 100644
--- a/docs/examples/layer-by-layer/blinky-async/Cargo.toml
+++ b/docs/examples/layer-by-layer/blinky-async/Cargo.toml
@@ -5,7 +5,7 @@ edition = "2021"
5license = "MIT OR Apache-2.0" 5license = "MIT OR Apache-2.0"
6 6
7[dependencies] 7[dependencies]
8cortex-m = "0.7" 8cortex-m = { version = "0.7", features = ["critical-section-single-core"] }
9cortex-m-rt = "0.7" 9cortex-m-rt = "0.7"
10embassy-stm32 = { version = "0.2.0", path = "../../../../embassy-stm32", features = ["stm32l475vg", "memory-x", "exti"] } 10embassy-stm32 = { version = "0.2.0", path = "../../../../embassy-stm32", features = ["stm32l475vg", "memory-x", "exti"] }
11embassy-executor = { version = "0.7.0", path = "../../../../embassy-executor", features = ["arch-cortex-m", "executor-thread"] } 11embassy-executor = { version = "0.7.0", path = "../../../../embassy-executor", features = ["arch-cortex-m", "executor-thread"] }