led-mask/firmware/Cargo.toml

53 lines
1,005 B
TOML
Raw Normal View History

2025-10-20 21:28:55 -05:00
[package]
edition = "2024"
name = "led-mask"
version = "0.1.0"
authors = ["Adam Gausmann <adam@gaussian.dev>"]
[[bin]]
name = "led-mask"
test = false
bench = false
[dependencies]
defmt = "1.0"
defmt-rtt = "1.1"
embedded-hal = "1.0.0"
embedded-hal-async = "1.0.0"
embedded-io = "0.6.1"
embedded-io-async = "0.6.1"
embedded-storage = "0.3.1"
cortex-m-rt = "0.7.3"
embassy-executor = { version = "0.9", features = [
"arch-cortex-m",
"executor-thread",
"defmt",
"executor-interrupt",
] }
embassy-sync = "0.7"
embassy-time = { version = "0.5", features = [
"defmt",
"defmt-timestamp-uptime",
] }
cortex-m = { version = "0.7.7" }
2025-10-27 22:40:37 -05:00
embassy-rp = { version = "0.8", features = [
"defmt",
"unstable-pac",
"time-driver",
"critical-section-impl",
"rp2040",
"boot2-w25q080",
] }
2025-10-20 21:28:55 -05:00
embedded-graphics = "0.8"
mipidsi = "0.9.0"
embedded-hal-bus = "0.3.0"
2025-10-27 22:40:37 -05:00
embassy-futures = "0.1.2"
heapless = "0.8.0"
2025-10-29 23:10:31 -05:00
rgb = "0.8.52"
2025-10-31 08:37:53 -05:00
smart-leds = "0.4.0"
fixed = "1.29.0"
tinybmp = "0.6.0"