aboutsummaryrefslogtreecommitdiff
path: root/docs/modules/ROOT
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2022-02-12 00:24:04 +0100
committerDario Nieuwenhuis <[email protected]>2022-02-12 01:16:31 +0100
commit20e14b8edbbf067ab683ffdb170938838d9167b3 (patch)
tree159c4d03cc7eb74dd88357d28bb93b2445dba163 /docs/modules/ROOT
parent611961b499f8d4fee4f556c56606a2481e944791 (diff)
embassy, embassy-nrf: add `nightly` Cargo feature to gate nightly-only features.
Diffstat (limited to 'docs/modules/ROOT')
-rw-r--r--docs/modules/ROOT/examples/basic/Cargo.toml4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/modules/ROOT/examples/basic/Cargo.toml b/docs/modules/ROOT/examples/basic/Cargo.toml
index 0f1c30da3..ed1c3cb1c 100644
--- a/docs/modules/ROOT/examples/basic/Cargo.toml
+++ b/docs/modules/ROOT/examples/basic/Cargo.toml
@@ -5,8 +5,8 @@ name = "embassy-basic-example"
5version = "0.1.0" 5version = "0.1.0"
6 6
7[dependencies] 7[dependencies]
8embassy = { version = "0.1.0", path = "../../../../../embassy", features = ["defmt"] } 8embassy = { version = "0.1.0", path = "../../../../../embassy", features = ["defmt", "nightly"] }
9embassy-nrf = { version = "0.1.0", path = "../../../../../embassy-nrf", features = ["defmt", "nrf52840", "time-driver-rtc1", "gpiote"] } 9embassy-nrf = { version = "0.1.0", path = "../../../../../embassy-nrf", features = ["defmt", "nrf52840", "time-driver-rtc1", "gpiote", "nightly"] }
10 10
11defmt = "0.3" 11defmt = "0.3"
12defmt-rtt = "0.3" 12defmt-rtt = "0.3"