aboutsummaryrefslogtreecommitdiff
path: root/docs/modules/ROOT/examples/basic/Cargo.toml
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2022-08-17 23:22:52 +0000
committerGitHub <[email protected]>2022-08-17 23:22:52 +0000
commitbe55d2a39eb399d693d11f37dfa4b87cd2bd3c7a (patch)
tree2ef0b4d6f9b1c02dac2589e7b57982c20cbc0e66 /docs/modules/ROOT/examples/basic/Cargo.toml
parent1c5b54a4823d596db730eb476c3ab78110557214 (diff)
parent5daa173ce4b153a532b4daa9e94c7a248231f25b (diff)
Merge #909
909: Split embassy-time from embassy-executor. r=Dirbaio a=Dirbaio For now this will fail to link unless you enable `embassy-executor/integrated-timers`. i'll add an executor-independent timer queue to `embassy-time` later. Co-authored-by: Dario Nieuwenhuis <[email protected]>
Diffstat (limited to 'docs/modules/ROOT/examples/basic/Cargo.toml')
-rw-r--r--docs/modules/ROOT/examples/basic/Cargo.toml1
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/modules/ROOT/examples/basic/Cargo.toml b/docs/modules/ROOT/examples/basic/Cargo.toml
index 59e1a437a..ae124a871 100644
--- a/docs/modules/ROOT/examples/basic/Cargo.toml
+++ b/docs/modules/ROOT/examples/basic/Cargo.toml
@@ -6,6 +6,7 @@ version = "0.1.0"
6 6
7[dependencies] 7[dependencies]
8embassy-executor = { version = "0.1.0", path = "../../../../../embassy-executor", features = ["defmt", "nightly"] } 8embassy-executor = { version = "0.1.0", path = "../../../../../embassy-executor", features = ["defmt", "nightly"] }
9embassy-time = { version = "0.1.0", path = "../../../../../embassy-time", features = ["defmt", "nightly"] }
9embassy-nrf = { version = "0.1.0", path = "../../../../../embassy-nrf", features = ["defmt", "nrf52840", "time-driver-rtc1", "gpiote", "nightly"] } 10embassy-nrf = { version = "0.1.0", path = "../../../../../embassy-nrf", features = ["defmt", "nrf52840", "time-driver-rtc1", "gpiote", "nightly"] }
10 11
11defmt = "0.3" 12defmt = "0.3"