41 lines
804 B
TOML
41 lines
804 B
TOML
[package]
|
|
name = "client-esp32"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
domain = { path = "../domain" }
|
|
protocol = { path = "../protocol" }
|
|
client-domain = { path = "../client-domain" }
|
|
client-application = { path = "../client-application" }
|
|
|
|
esp-idf-hal = "0.46"
|
|
esp-idf-svc = { version = "0.52", features = ["experimental"] }
|
|
esp-idf-sys = "0.37"
|
|
|
|
mipidsi = "0.10"
|
|
embedded-graphics = "0.8"
|
|
embedded-text = "0.7"
|
|
embedded-hal-bus = "0.3"
|
|
|
|
serde = { version = "1.0", default-features = false, features = [
|
|
"derive",
|
|
"alloc",
|
|
] }
|
|
postcard = { version = "1.1", default-features = false, features = ["alloc"] }
|
|
|
|
log = "0.4"
|
|
|
|
[profile.release]
|
|
opt-level = "s"
|
|
lto = true
|
|
strip = true
|
|
panic = "abort"
|
|
codegen-units = 1
|
|
|
|
[profile.dev]
|
|
panic = "abort"
|
|
|
|
[build-dependencies]
|
|
embuild = "0.33"
|