53 lines
1.7 KiB
TOML
53 lines
1.7 KiB
TOML
[workspace]
|
|
[package]
|
|
name = "alert-me-display"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies.embassy-nrf]
|
|
version = "0.2.0"
|
|
git = "https://github.com/embassy-rs/embassy.git"
|
|
rev = "0ede8479dc4c6a58cfab0a5d4df41c0592405971"
|
|
features = ["defmt", "nrf52840", "time-driver-rtc1", "gpiote", "unstable-pac", "time"]
|
|
|
|
[dependencies.embassy-embedded-hal]
|
|
version = "0.2.0"
|
|
git = "https://github.com/embassy-rs/embassy.git"
|
|
rev = "0ede8479dc4c6a58cfab0a5d4df41c0592405971"
|
|
|
|
[dependencies.embassy-executor]
|
|
version = "0.6.0"
|
|
git = "https://github.com/embassy-rs/embassy.git"
|
|
rev = "0ede8479dc4c6a58cfab0a5d4df41c0592405971"
|
|
features = ["task-arena-size-32768", "arch-cortex-m", "executor-thread", "executor-interrupt", "defmt", "integrated-timers"]
|
|
|
|
[dependencies.embassy-time]
|
|
version = "0.3.2"
|
|
git = "https://github.com/embassy-rs/embassy.git"
|
|
rev = "0ede8479dc4c6a58cfab0a5d4df41c0592405971"
|
|
features = ["defmt", "defmt-timestamp-uptime"]
|
|
|
|
[dependencies.embassy-sync]
|
|
version = "0.6.0"
|
|
git = "https://github.com/embassy-rs/embassy.git"
|
|
rev = "cf0d227cca92a80e85575154d380d1ff73fb32cf"
|
|
|
|
[dependencies.nrf-softdevice]
|
|
version = "0.1.0"
|
|
git = "https://github.com/embassy-rs/nrf-softdevice.git"
|
|
rev = "991d28e3c61687908acc53e748191eb59d00e27a"
|
|
features = ["defmt", "ble-peripheral", "ble-central", "critical-section-impl", "ble-gatt-server", "nrf52840", "s140"]
|
|
|
|
[dependencies]
|
|
defmt = "0.3.8"
|
|
defmt-rtt = "0.4.1"
|
|
|
|
panic-probe = { version = "0.3.2", features = ["print-defmt"] }
|
|
|
|
cortex-m = { version = "0.7.7", features = ["inline-asm"] }
|
|
cortex-m-rt = "0.7.3"
|
|
|
|
embedded-hal-async = "1.0.0"
|
|
embedded-storage-async = "0.4.1"
|
|
futures = { version = "0.3.30", default-features = false }
|