2022-06-24 19:56:15 +02:00
|
|
|
[package]
|
|
|
|
edition = "2021"
|
|
|
|
name = "embassy-boot-nrf-examples"
|
|
|
|
version = "0.1.0"
|
2022-10-07 12:41:56 +02:00
|
|
|
license = "MIT OR Apache-2.0"
|
2022-06-24 19:56:15 +02:00
|
|
|
|
|
|
|
[dependencies]
|
2023-10-31 09:18:00 +01:00
|
|
|
embassy-sync = { version = "0.4.0", path = "../../../../embassy-sync" }
|
2023-11-14 18:47:15 +01:00
|
|
|
embassy-executor = { version = "0.3.3", path = "../../../../embassy-executor", features = ["arch-cortex-m", "executor-thread", "nightly", "integrated-timers", "arch-cortex-m", "executor-thread"] }
|
2023-10-16 20:07:48 +02:00
|
|
|
embassy-time = { version = "0.1.5", path = "../../../../embassy-time", features = ["nightly"] }
|
2023-01-04 13:35:01 +01:00
|
|
|
embassy-nrf = { version = "0.1.0", path = "../../../../embassy-nrf", features = ["time-driver-rtc1", "gpiote", "nightly"] }
|
2023-04-20 10:22:44 +02:00
|
|
|
embassy-boot = { version = "0.1.0", path = "../../../../embassy-boot/boot", features = ["nightly"] }
|
|
|
|
embassy-boot-nrf = { version = "0.1.0", path = "../../../../embassy-boot/nrf", features = ["nightly"] }
|
2022-06-24 19:56:15 +02:00
|
|
|
embassy-embedded-hal = { version = "0.1.0", path = "../../../../embassy-embedded-hal" }
|
|
|
|
|
|
|
|
defmt = { version = "0.3", optional = true }
|
2022-11-29 21:15:24 +01:00
|
|
|
defmt-rtt = { version = "0.4", optional = true }
|
2022-06-24 19:56:15 +02:00
|
|
|
panic-reset = { version = "0.1.1" }
|
|
|
|
embedded-hal = { version = "0.2.6" }
|
|
|
|
|
2023-04-18 21:07:36 +02:00
|
|
|
cortex-m = { version = "0.7.6", features = ["inline-asm", "critical-section-single-core"] }
|
2022-06-24 19:56:15 +02:00
|
|
|
cortex-m-rt = "0.7.0"
|
2023-01-06 12:21:39 +01:00
|
|
|
|
|
|
|
[features]
|
|
|
|
ed25519-dalek = ["embassy-boot/ed25519-dalek"]
|
2023-04-18 21:07:36 +02:00
|
|
|
ed25519-salty = ["embassy-boot/ed25519-salty"]
|
2023-06-19 23:30:51 +02:00
|
|
|
skip-include = []
|