17 lines
477 B
TOML
17 lines
477 B
TOML
[package]
|
|
name = "embassy-rgb"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
publish = false
|
|
build = "build.rs"
|
|
|
|
[dependencies]
|
|
cortex-m.workspace = true
|
|
cortex-m-rt.workspace = true
|
|
defmt.workspace = true
|
|
defmt-rtt.workspace = true
|
|
embassy-executor = { workspace = true, features = ["defmt", "executor-thread", "platform-cortex-m"] }
|
|
embassy-stm32 = { workspace = true, features = ["defmt", "stm32f103c8", "time-driver-tim3"] }
|
|
embassy-time.workspace = true
|
|
panic-probe.workspace = true
|