mirror of
https://github.com/Narukara/std-training-zh-cn.git
synced 2025-08-06 14:52:09 +08:00
30 lines
694 B
TOML
30 lines
694 B
TOML
[package]
|
|
name = "button-interrupt"
|
|
version = "0.1.0"
|
|
authors = [
|
|
"Anatol Ulrich <anatol.ulrich@ferrous-systems.com>",
|
|
"Sergio Gasquez <sergio.gasquez@gmail.com>",
|
|
"Tanks Transfeld <tanks.transfeld@ferrous-systems.com>",
|
|
]
|
|
edition = "2021"
|
|
resolver = "2"
|
|
|
|
[[bin]]
|
|
name = "button-interrupt"
|
|
harness = false # We can't use the default rust libtest harness for a crosscompile target
|
|
|
|
[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]
|
|
anyhow = "=1.0.95"
|
|
esp-idf-svc = "=0.50.1"
|
|
rgb-led = { path = "../../common/lib/rgb-led" }
|
|
|
|
[build-dependencies]
|
|
embuild = "=0.33.0"
|