readdy/Cargo.toml

40 lines
1.3 KiB
TOML
Raw Permalink Normal View History

2024-09-16 12:14:45 +02:00
[package]
name = "readdy"
version = "0.1.0"
edition = "2021"
[dependencies]
display-interface-spi = "0.5.0"
embedded-graphics = "0.8.1"
embedded-hal-bus = "0.2.0"
esp-backtrace = { version = "0.13.0", features = ["esp32c6", "exception-handler", "panic-handler", "println"] }
2024-09-20 17:48:30 +02:00
esp-hal = { version = "0.20", features = ["esp32c6", "embedded-hal"] }
2024-09-18 13:23:15 +02:00
esp-println = { version = "0.10.0", default-features = false, features = ["esp32c6", "log", "auto"] }
2024-09-16 12:14:45 +02:00
heapless = "0.8.0"
log = { version = "0.4.21" }
nutype = { version = "0.5.0", default-features = false }
profont = "0.7.0"
rand = { version = "0.8.5", default-features = false, features = ["small_rng"] }
weact-studio-epd = { version = "0.1.2", features = ["blocking"] }
shared = { path = "./shared", features = ['trng'] }
maze = { path = "./maze" }
2024-09-17 13:19:24 +02:00
strum = { version = "0.26.3", default-features = false, features = ["derive"] }
2024-09-18 13:23:15 +02:00
keypad = "0.2.2"
2024-09-23 17:07:30 +02:00
epd-waveshare = { path = "./epd-waveshare" }
embedded-hal = "1.0.0"
2024-09-16 12:14:45 +02:00
[profile.dev]
# Rust debug is too slow.
# For debug builds always builds with some optimization
opt-level = "s"
[profile.release]
codegen-units = 1 # LLVM can perform better optimizations using a single thread
debug = 2
debug-assertions = false
incremental = false
lto = 'fat'
opt-level = 's'
overflow-checks = false