Initial project creation
This commit is contained in:
+26
@@ -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"
|
||||
Reference in New Issue
Block a user