diff options
| author | Dario Nieuwenhuis <[email protected]> | 2023-11-29 17:23:48 +0100 |
|---|---|---|
| committer | Dario Nieuwenhuis <[email protected]> | 2023-11-29 17:26:33 +0100 |
| commit | c6989dfbca51787146f50270c671af9db434f577 (patch) | |
| tree | 5974a8ec41c108d5208e4f68027b918d424a2046 /examples/nrf5340 | |
| parent | 384bad7bfaa1f2415baf2cd3b69ebf36dc0a02d7 (diff) | |
Remove nightly and unstable-traits features in preparation for 1.75.
Diffstat (limited to 'examples/nrf5340')
| -rw-r--r-- | examples/nrf5340/Cargo.toml | 41 |
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] |
| 8 | embassy-futures = { version = "0.1.0", path = "../../embassy-futures" } | 8 | embassy-futures = { version = "0.1.0", path = "../../embassy-futures" } |
| 9 | embassy-sync = { version = "0.4.0", path = "../../embassy-sync", features = [ | 9 | embassy-sync = { version = "0.4.0", path = "../../embassy-sync", features = ["defmt"] } |
| 10 | "defmt", | 10 | embassy-executor = { version = "0.3.3", path = "../../embassy-executor", features = ["arch-cortex-m", "executor-thread", "nightly", "defmt", "integrated-timers"] } |
| 11 | ] } | 11 | embassy-time = { version = "0.1.5", path = "../../embassy-time", features = ["defmt", "defmt-timestamp-uptime"] } |
| 12 | embassy-executor = { version = "0.3.3", path = "../../embassy-executor", features = ["arch-cortex-m", "executor-thread", | 12 | embassy-nrf = { version = "0.1.0", path = "../../embassy-nrf", features = ["defmt", "nrf5340-app-s", "time-driver-rtc1", "gpiote", "unstable-pac"] } |
| 13 | "nightly", | 13 | embassy-net = { version = "0.2.0", path = "../../embassy-net", features = ["defmt", "tcp", "dhcpv4", "medium-ethernet"] } |
| 14 | "defmt", | 14 | embassy-usb = { version = "0.1.0", path = "../../embassy-usb", features = ["defmt"] } |
| 15 | "integrated-timers", | ||
| 16 | ] } | ||
| 17 | embassy-time = { version = "0.1.5", path = "../../embassy-time", features = [ | ||
| 18 | "defmt", | ||
| 19 | "defmt-timestamp-uptime", | ||
| 20 | ] } | ||
| 21 | embassy-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 | ] } | ||
| 30 | embassy-net = { version = "0.2.0", path = "../../embassy-net", features = [ | ||
| 31 | "nightly", | ||
| 32 | "defmt", | ||
| 33 | "tcp", | ||
| 34 | "dhcpv4", | ||
| 35 | "medium-ethernet", | ||
| 36 | ] } | ||
| 37 | embassy-usb = { version = "0.1.0", path = "../../embassy-usb", features = [ | ||
| 38 | "defmt", | ||
| 39 | ] } | ||
| 40 | embedded-io-async = { version = "0.6.1" } | 15 | embedded-io-async = { version = "0.6.1" } |
| 41 | 16 | ||
| 42 | defmt = "0.3" | 17 | defmt = "0.3" |
| @@ -46,9 +21,7 @@ static_cell = { version = "2", features = ["nightly"]} | |||
| 46 | cortex-m = { version = "0.7.6", features = ["inline-asm", "critical-section-single-core"] } | 21 | cortex-m = { version = "0.7.6", features = ["inline-asm", "critical-section-single-core"] } |
| 47 | cortex-m-rt = "0.7.0" | 22 | cortex-m-rt = "0.7.0" |
| 48 | panic-probe = { version = "0.3", features = ["print-defmt"] } | 23 | panic-probe = { version = "0.3", features = ["print-defmt"] } |
| 49 | futures = { version = "0.3.17", default-features = false, features = [ | 24 | futures = { version = "0.3.17", default-features = false, features = ["async-await"] } |
| 50 | "async-await", | ||
| 51 | ] } | ||
| 52 | rand = { version = "0.8.4", default-features = false } | 25 | rand = { version = "0.8.4", default-features = false } |
| 53 | embedded-storage = "0.3.0" | 26 | embedded-storage = "0.3.0" |
| 54 | usbd-hid = "0.6.0" | 27 | usbd-hid = "0.6.0" |
