Initial project creation

This commit is contained in:
Wyatt Marchand
2026-08-25 20:24:08 -07:00
commit 7542e733c1
7 changed files with 76 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
[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"
[build-dependencies]
embuild = "0.33"