picow/Cargo.toml

22 lines
555 B
TOML
Raw Normal View History

2024-10-11 18:24:55 -07:00
[package]
2024-10-11 23:48:37 -07:00
name = "picow"
2024-10-11 18:24:55 -07:00
version = "0.1.0"
edition = "2021"
2024-10-12 16:04:35 -07:00
license = "MIT"
2024-10-11 18:24:55 -07:00
[dependencies]
2024-10-11 23:48:37 -07:00
cortex-m-rt = "*"
2024-10-12 19:58:43 -07:00
cyw43 = "*"
cyw43-pio = "*"
embassy-executor = { version = "*", features = ["arch-cortex-m", "executor-interrupt", "executor-thread", "integrated-timers", "task-arena-size-98304"] }
embassy-rp = { version = "*", features = ["critical-section-impl", "time-driver"] }
embassy-time = "*"
panic-halt = "*"
2024-10-11 23:48:37 -07:00
portable-atomic = { version = "*", features = ["critical-section"] }
static_cell = "*"
[profile.release]
debug = 2
lto = true
opt-level = "z"