20 lines
846 B
TOML
20 lines
846 B
TOML
[package]
|
|
name = "led-compass"
|
|
version = "0.1.0"
|
|
authors = ["Gabriel Venberg"]
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
cortex-m = { version = "0.7.7", features = ["inline-asm", "critical-section-single-core"] }
|
|
cortex-m-rt = "0.7.5"
|
|
defmt = "1.0.1"
|
|
defmt-rtt = "1.0.0"
|
|
embassy-executor = { version = "0.7.0", features = ["arch-cortex-m", "executor-thread", "defmt"] }
|
|
embassy-nrf = { version = "0.3.1", features = ["defmt", "nrf52833", "gpiote", "time-driver-rtc1", "time"] }
|
|
embassy-time = { version = "0.4.0", features = ["defmt", "defmt-timestamp-uptime"] }
|
|
lsm303agr = { version = "1.1.0", features = ["async"] }
|
|
panic-probe = { version = "1.0.0", features = ["print-defmt"] }
|
|
independent_logic = {path="../independent_logic"}
|
|
embassy-futures = { version = "0.1.1", features = ["defmt"] }
|
|
embassy-sync = { version = "0.7.0", features = ["defmt"] }
|
|
|