28 lines
599 B
TOML
28 lines
599 B
TOML
[package]
|
|
name = "esp32s3_remote_i2c_lcd"
|
|
version = "0.1.0"
|
|
authors = ["Wyatt Marchand <netwxxt@gmail.com>"]
|
|
edition = "2021"
|
|
resolver = "2"
|
|
rust-version = "1.82"
|
|
|
|
[[bin]]
|
|
name = "esp32s3_remote_i2c_lcd"
|
|
harness = false # do not use the built-in cargo test harness -> resolve rust-analyzer errors
|
|
|
|
[profile.release]
|
|
opt-level = "s"
|
|
|
|
[profile.dev]
|
|
debug = true # Symbols are nice, and they don't increase the size on Flash
|
|
opt-level = "z"
|
|
|
|
[dependencies]
|
|
esp-idf-svc = { version = "0.51", features = ["std"] }
|
|
anyhow = "1"
|
|
log = "0.4"
|
|
hd44780-driver = "0.4"
|
|
|
|
[build-dependencies]
|
|
embuild = "0.33"
|