embassy-display-test/Cargo.toml

40 lines
1.3 KiB
TOML
Raw Normal View History

2024-12-15 20:49:22 +00:00
[package]
edition = "2021"
2024-12-20 16:51:34 +00:00
name = "embassy-diplay-test"
2024-12-15 20:49:22 +00:00
version = "0.1.0"
authors = ["Sebastian H. Gabrielli <sebgab@sebamail.no>"]
resolver = "2"
[dependencies]
defmt = "0.3"
defmt-rtt = "0.4"
panic-probe = { version = "0.3", features = ["print-defmt"] }
embedded-hal = "1.0.0"
embedded-hal-async = "1.0.0"
embedded-io = "0.6.1"
embedded-io-async = { version = "0.6.1", features = ["defmt-03"] }
embedded-storage = "0.3.1"
cortex-m-rt = "0.7.3"
embassy-executor = { version = "0.6", features = ["task-arena-size-32768", "arch-cortex-m", "executor-thread", "defmt", "integrated-timers", "executor-interrupt"] }
embassy-sync = { version = "0.6" }
embassy-time = { version = "0.3", features = ["defmt", "defmt-timestamp-uptime"] }
#embassy-net-nrf91 = { version = "0.1.0", features = ["defmt"] }
embassy-net = { version = "0.5.0", features = ["defmt", "tcp", "proto-ipv4", "medium-ip"] }
2024-12-20 16:47:22 +00:00
embassy-embedded-hal = "0.2"
2024-12-15 20:49:22 +00:00
cortex-m = { version = "0.7.6", features = ["critical-section-single-core", "inline-asm"] }
embassy-nrf = { version = "0.2", features = ["defmt", "nrf9160-s", "time-driver-rtc1", "gpiote", "unstable-pac", "time"] }
static_cell = {version = "2"}
2024-12-15 21:40:00 +00:00
# Used for display
embedded-graphics = "0.8.1"
ili9341 = "0.6.0"
display-interface-spi = "0.5.0"
2024-12-15 20:49:22 +00:00
[profile.release]
2024-12-20 16:47:22 +00:00
debug = 2