alert-me/display/Cargo.toml

53 lines
1.7 KiB
TOML
Raw Permalink Normal View History

2024-05-20 09:18:17 +00:00
[workspace]
[package]
name = "alert-me-display"
version = "0.1.0"
edition = "2021"
[dependencies.embassy-nrf]
2024-09-24 07:57:32 +00:00
version = "0.2.0"
2024-05-20 09:18:17 +00:00
git = "https://github.com/embassy-rs/embassy.git"
2024-09-24 07:57:32 +00:00
rev = "0ede8479dc4c6a58cfab0a5d4df41c0592405971"
2024-05-20 09:18:17 +00:00
features = ["defmt", "nrf52840", "time-driver-rtc1", "gpiote", "unstable-pac", "time"]
2024-06-28 16:18:43 +00:00
[dependencies.embassy-embedded-hal]
2024-09-24 07:57:32 +00:00
version = "0.2.0"
2024-06-28 16:18:43 +00:00
git = "https://github.com/embassy-rs/embassy.git"
2024-09-24 07:57:32 +00:00
rev = "0ede8479dc4c6a58cfab0a5d4df41c0592405971"
2024-06-28 16:18:43 +00:00
2024-05-20 09:18:17 +00:00
[dependencies.embassy-executor]
2024-09-24 07:57:32 +00:00
version = "0.6.0"
2024-05-20 09:18:17 +00:00
git = "https://github.com/embassy-rs/embassy.git"
2024-09-24 07:57:32 +00:00
rev = "0ede8479dc4c6a58cfab0a5d4df41c0592405971"
2024-05-20 09:18:17 +00:00
features = ["task-arena-size-32768", "arch-cortex-m", "executor-thread", "executor-interrupt", "defmt", "integrated-timers"]
[dependencies.embassy-time]
2024-09-24 07:57:32 +00:00
version = "0.3.2"
2024-05-20 09:18:17 +00:00
git = "https://github.com/embassy-rs/embassy.git"
2024-09-24 07:57:32 +00:00
rev = "0ede8479dc4c6a58cfab0a5d4df41c0592405971"
2024-05-20 09:18:17 +00:00
features = ["defmt", "defmt-timestamp-uptime"]
2024-09-24 20:40:35 +00:00
[dependencies.embassy-sync]
version = "0.6.0"
git = "https://github.com/embassy-rs/embassy.git"
rev = "cf0d227cca92a80e85575154d380d1ff73fb32cf"
2024-05-20 09:18:17 +00:00
[dependencies.nrf-softdevice]
version = "0.1.0"
git = "https://github.com/embassy-rs/nrf-softdevice.git"
2024-09-24 07:57:32 +00:00
rev = "991d28e3c61687908acc53e748191eb59d00e27a"
2024-05-20 09:18:17 +00:00
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"
2024-09-24 20:40:35 +00:00
embedded-storage-async = "0.4.1"
futures = { version = "0.3.30", default-features = false }