aboutsummaryrefslogtreecommitdiff
path: root/examples/nrf5340/Cargo.toml
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2023-11-29 17:23:48 +0100
committerDario Nieuwenhuis <[email protected]>2023-11-29 17:26:33 +0100
commitc6989dfbca51787146f50270c671af9db434f577 (patch)
tree5974a8ec41c108d5208e4f68027b918d424a2046 /examples/nrf5340/Cargo.toml
parent384bad7bfaa1f2415baf2cd3b69ebf36dc0a02d7 (diff)
Remove nightly and unstable-traits features in preparation for 1.75.
Diffstat (limited to 'examples/nrf5340/Cargo.toml')
-rw-r--r--examples/nrf5340/Cargo.toml41
1 files changed, 7 insertions, 34 deletions
diff --git a/examples/nrf5340/Cargo.toml b/examples/nrf5340/Cargo.toml
index 25ae97496..b4d71c751 100644
--- a/examples/nrf5340/Cargo.toml
+++ b/examples/nrf5340/Cargo.toml
@@ -6,37 +6,12 @@ license = "MIT OR Apache-2.0"
6 6
7[dependencies] 7[dependencies]
8embassy-futures = { version = "0.1.0", path = "../../embassy-futures" } 8embassy-futures = { version = "0.1.0", path = "../../embassy-futures" }
9embassy-sync = { version = "0.4.0", path = "../../embassy-sync", features = [ 9embassy-sync = { version = "0.4.0", path = "../../embassy-sync", features = ["defmt"] }
10 "defmt", 10embassy-executor = { version = "0.3.3", path = "../../embassy-executor", features = ["arch-cortex-m", "executor-thread", "nightly", "defmt", "integrated-timers"] }
11] } 11embassy-time = { version = "0.1.5", path = "../../embassy-time", features = ["defmt", "defmt-timestamp-uptime"] }
12embassy-executor = { version = "0.3.3", path = "../../embassy-executor", features = ["arch-cortex-m", "executor-thread", 12embassy-nrf = { version = "0.1.0", path = "../../embassy-nrf", features = ["defmt", "nrf5340-app-s", "time-driver-rtc1", "gpiote", "unstable-pac"] }
13 "nightly", 13embassy-net = { version = "0.2.0", path = "../../embassy-net", features = ["defmt", "tcp", "dhcpv4", "medium-ethernet"] }
14 "defmt", 14embassy-usb = { version = "0.1.0", path = "../../embassy-usb", features = ["defmt"] }
15 "integrated-timers",
16] }
17embassy-time = { version = "0.1.5", path = "../../embassy-time", features = [
18 "defmt",
19 "defmt-timestamp-uptime",
20] }
21embassy-nrf = { version = "0.1.0", path = "../../embassy-nrf", features = [
22 "nightly",
23 "unstable-traits",
24 "defmt",
25 "nrf5340-app-s",
26 "time-driver-rtc1",
27 "gpiote",
28 "unstable-pac",
29] }
30embassy-net = { version = "0.2.0", path = "../../embassy-net", features = [
31 "nightly",
32 "defmt",
33 "tcp",
34 "dhcpv4",
35 "medium-ethernet",
36] }
37embassy-usb = { version = "0.1.0", path = "../../embassy-usb", features = [
38 "defmt",
39] }
40embedded-io-async = { version = "0.6.1" } 15embedded-io-async = { version = "0.6.1" }
41 16
42defmt = "0.3" 17defmt = "0.3"
@@ -46,9 +21,7 @@ static_cell = { version = "2", features = ["nightly"]}
46cortex-m = { version = "0.7.6", features = ["inline-asm", "critical-section-single-core"] } 21cortex-m = { version = "0.7.6", features = ["inline-asm", "critical-section-single-core"] }
47cortex-m-rt = "0.7.0" 22cortex-m-rt = "0.7.0"
48panic-probe = { version = "0.3", features = ["print-defmt"] } 23panic-probe = { version = "0.3", features = ["print-defmt"] }
49futures = { version = "0.3.17", default-features = false, features = [ 24futures = { version = "0.3.17", default-features = false, features = ["async-await"] }
50 "async-await",
51] }
52rand = { version = "0.8.4", default-features = false } 25rand = { version = "0.8.4", default-features = false }
53embedded-storage = "0.3.0" 26embedded-storage = "0.3.0"
54usbd-hid = "0.6.0" 27usbd-hid = "0.6.0"