lightbar-fw/Cargo.toml

40 lines
765 B
TOML
Raw Normal View History

2025-01-04 02:51:38 -08:00
[package]
name = "lightbar"
version = "0.1.0"
edition = "2021"
[dependencies]
ch32-hal = { path = "ch32-hal", features = [
"ch32v203c8t6",
"embassy",
"memory-x",
"rt",
"highcode",
], no-default-features = true }
embassy-executor = { version = "0.6.3", features = [
"integrated-timers",
"arch-spin",
"executor-thread",
] }
qingke-rt = "*"
qingke = { version = "0.5.0" }
embedded-hal = "1.0.0"
embassy-time = { version = "0.3.2", features = ["tick-hz-10_000"] }
embassy-time-driver = "0.1.0"
embassy-usb = "0.3.0"
embassy-futures = "0.1.1"
heapless = "0.8.0"
critical-section = "1.2.0"
micromath = "2.1.0"
[profile.release]
strip = false
lto = true
opt-level = "z"
[profile.dev]
strip = false
lto = false
debug = true
opt-level = 1