summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorDario Nieuwenhuis <dirbaio@dirbaio.net>2022-02-12 00:24:04 +0100
committerDario Nieuwenhuis <dirbaio@dirbaio.net>2022-02-12 01:16:31 +0100
commit20e14b8edbbf067ab683ffdb170938838d9167b3 (patch)
tree159c4d03cc7eb74dd88357d28bb93b2445dba163 /docs
parent611961b499f8d4fee4f556c56606a2481e944791 (diff)
downloadembassy-20e14b8edbbf067ab683ffdb170938838d9167b3.zip
embassy, embassy-nrf: add `nightly` Cargo feature to gate nightly-only features.
Diffstat (limited to 'docs')
-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 0f1c30da..ed1c3cb1 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"
version = "0.1.0"
[dependencies]
-embassy = { version = "0.1.0", path = "../../../../../embassy", features = ["defmt"] }
-embassy-nrf = { version = "0.1.0", path = "../../../../../embassy-nrf", features = ["defmt", "nrf52840", "time-driver-rtc1", "gpiote"] }
+embassy = { version = "0.1.0", path = "../../../../../embassy", features = ["defmt", "nightly"] }
+embassy-nrf = { version = "0.1.0", path = "../../../../../embassy-nrf", features = ["defmt", "nrf52840", "time-driver-rtc1", "gpiote", "nightly"] }
defmt = "0.3"
defmt-rtt = "0.3"