2024-05-20 09:18:17 +00:00
|
|
|
[workspace]
|
|
|
|
[package]
|
|
|
|
name = "alert-me-display"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies.embassy-nrf]
|
|
|
|
version = "0.1.0"
|
|
|
|
git = "https://github.com/embassy-rs/embassy.git"
|
|
|
|
rev = "3c52ef60b19468a8700d612699c869f0bdcae339"
|
|
|
|
features = ["defmt", "nrf52840", "time-driver-rtc1", "gpiote", "unstable-pac", "time"]
|
|
|
|
|
2024-06-28 16:18:43 +00:00
|
|
|
[dependencies.embassy-embedded-hal]
|
|
|
|
version = "0.1.0"
|
|
|
|
git = "https://github.com/embassy-rs/embassy.git"
|
|
|
|
rev = "3c52ef60b19468a8700d612699c869f0bdcae339"
|
|
|
|
|
2024-05-20 09:18:17 +00:00
|
|
|
[dependencies.embassy-executor]
|
|
|
|
version = "0.5.0"
|
|
|
|
git = "https://github.com/embassy-rs/embassy.git"
|
|
|
|
rev = "3c52ef60b19468a8700d612699c869f0bdcae339"
|
|
|
|
features = ["task-arena-size-32768", "arch-cortex-m", "executor-thread", "executor-interrupt", "defmt", "integrated-timers"]
|
|
|
|
|
|
|
|
[dependencies.embassy-time]
|
|
|
|
version = "0.3.0"
|
|
|
|
git = "https://github.com/embassy-rs/embassy.git"
|
|
|
|
rev = "3c52ef60b19468a8700d612699c869f0bdcae339"
|
|
|
|
features = ["defmt", "defmt-timestamp-uptime"]
|
|
|
|
|
|
|
|
[dependencies.nrf-softdevice]
|
|
|
|
version = "0.1.0"
|
|
|
|
git = "https://github.com/embassy-rs/nrf-softdevice.git"
|
|
|
|
rev = "3c53b8c454cc9331082053033485e713abcadbb5"
|
|
|
|
features = ["defmt", "ble-peripheral", "ble-central", "critical-section-impl", "ble-gatt-server", "nrf52840", "s140"]
|
|
|
|
|
|
|
|
[dependencies]
|
2024-06-28 16:18:43 +00:00
|
|
|
defmt = "0.3.8"
|
|
|
|
defmt-rtt = "0.4.1"
|
2024-05-20 09:18:17 +00:00
|
|
|
|
2024-06-28 16:18:43 +00:00
|
|
|
panic-probe = { version = "0.3.2", features = ["print-defmt"] }
|
2024-05-20 09:18:17 +00:00
|
|
|
|
|
|
|
cortex-m = { version = "0.7.7", features = ["inline-asm"] }
|
2024-06-28 16:18:43 +00:00
|
|
|
cortex-m-rt = "0.7.3"
|
|
|
|
|
|
|
|
embedded-hal-async = "1.0.0"
|
|
|
|
|
|
|
|
ekv = { version = "0.1.0", git = "https://github.com/embassy-rs/ekv.git", rev = "571a9c8863e9644682ebd41343eaf0444ea4bf87", features = [
|
|
|
|
"crc",
|
|
|
|
"page-size-4096",
|
|
|
|
"align-4",
|
|
|
|
"max-page-count-2048",
|
|
|
|
]}
|