32 lines
571 B
TOML
32 lines
571 B
TOML
|
|
[package]
|
||
|
|
name = "xiao-esp32c6"
|
||
|
|
version = "0.1.0"
|
||
|
|
edition = "2024"
|
||
|
|
|
||
|
|
[[bin]]
|
||
|
|
name = "xiao-esp32c6"
|
||
|
|
harness = false
|
||
|
|
|
||
|
|
[build-dependencies]
|
||
|
|
embuild = "*"
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
critical-section = { version = "*", features = ["std"] }
|
||
|
|
embassy-executor = { version = "*", features = ["arch-std", "executor-thread", "log"] }
|
||
|
|
esp-idf-svc = { version = "*", features = ["embassy-time-driver"] }
|
||
|
|
log = "*"
|
||
|
|
riscv-rt = "*"
|
||
|
|
static_cell = "*"
|
||
|
|
|
||
|
|
[features]
|
||
|
|
default = []
|
||
|
|
experimental = ["esp-idf-svc/experimental"]
|
||
|
|
|
||
|
|
[profile.release]
|
||
|
|
opt-level = "s"
|
||
|
|
|
||
|
|
[profile.dev]
|
||
|
|
debug = true
|
||
|
|
opt-level = "z"
|
||
|
|
|