ch32-dimmer-node/Cargo.toml
2025-03-12 02:29:43 +01:00

40 lines
953 B
TOML

[package]
name = "ch32-dimmer-node"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "ch32-dimmer-node"
test = false
bench = false
[dependencies]
panic-halt = "1.0.0"
ch32-hal = {git = "https://github.com/ch32-rs/ch32-hal", features = [
"ch32v003f4p6",
"embassy",
"time-driver-tim2",
]}
qingke-rt = { version = "0.5.0", features = ["highcode"] }
qingke = "0.5.0"
embedded-hal = "1.0.0"
embassy-executor = {version = "0.6.0", features = [
"integrated-timers",
"arch-spin",
"executor-thread",
"task-arena-size-320", # see https://docs.embassy.dev/embassy-executor/git/cortex-m/index.html#task-arena-size
]}
fugit = "0.3.7"
[profile.release]
strip = true
opt-level = "z"
lto = "fat"
[profile.dev]
strip = false # symbols are not flashed to the microcontroller, so don't strip them.
opt-level = "s" # Optimize for size.
[dev-dependencies]
# No entries, since `no_std` projects are often incompatible with standard tests