aboutsummaryrefslogtreecommitdiff
path: root/docs/examples/basic
diff options
context:
space:
mode:
authormaor1993 <[email protected]>2025-08-29 01:11:56 +0300
committerGitHub <[email protected]>2025-08-29 01:11:56 +0300
commita79a566f1e817260309b1c9bc864b80b12c8130b (patch)
tree2e87e874a6c51a68354f8a376c7b026f67c162c3 /docs/examples/basic
parent6b8d375813116fba0e04aa28e23ded8ab077729a (diff)
parentd3c84ee1d34329e61464c9acbedab74e9076ac0d (diff)
Merge branch 'embassy-rs:main' into main
Diffstat (limited to 'docs/examples/basic')
-rw-r--r--docs/examples/basic/Cargo.toml12
1 files changed, 9 insertions, 3 deletions
diff --git a/docs/examples/basic/Cargo.toml b/docs/examples/basic/Cargo.toml
index 15fd42703..b6dbeda2a 100644
--- a/docs/examples/basic/Cargo.toml
+++ b/docs/examples/basic/Cargo.toml
@@ -5,10 +5,11 @@ name = "embassy-basic-example"
5version = "0.1.0" 5version = "0.1.0"
6license = "MIT OR Apache-2.0" 6license = "MIT OR Apache-2.0"
7 7
8publish = false
8[dependencies] 9[dependencies]
9embassy-executor = { version = "0.8.0", path = "../../../embassy-executor", features = ["defmt", "arch-cortex-m", "executor-thread"] } 10embassy-executor = { version = "0.9.0", path = "../../../embassy-executor", features = ["defmt", "arch-cortex-m", "executor-thread"] }
10embassy-time = { version = "0.4.0", path = "../../../embassy-time", features = ["defmt"] } 11embassy-time = { version = "0.5.0", path = "../../../embassy-time", features = ["defmt"] }
11embassy-nrf = { version = "0.6.0", path = "../../../embassy-nrf", features = ["defmt", "nrf52840", "time-driver-rtc1", "gpiote"] } 12embassy-nrf = { version = "0.7.0", path = "../../../embassy-nrf", features = ["defmt", "nrf52840", "time-driver-rtc1", "gpiote"] }
12 13
13defmt = "1.0.1" 14defmt = "1.0.1"
14defmt-rtt = "1.0.0" 15defmt-rtt = "1.0.0"
@@ -16,3 +17,8 @@ defmt-rtt = "1.0.0"
16cortex-m = { version = "0.7.6", features = ["critical-section-single-core"] } 17cortex-m = { version = "0.7.6", features = ["critical-section-single-core"] }
17cortex-m-rt = "0.7.0" 18cortex-m-rt = "0.7.0"
18panic-probe = { version = "1.0.0", features = ["print-defmt"] } 19panic-probe = { version = "1.0.0", features = ["print-defmt"] }
20
21[package.metadata.embassy]
22build = [
23 { target = "thumbv7em-none-eabi" }
24]