picow/Cargo.toml

23 lines
665 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"
[dependencies]
2024-10-11 23:48:37 -07:00
cortex-m-rt = "*"
cyw43 = "*"
cyw43-pio = "*"
defmt = "*"
defmt-rtt = "*"
embassy-executor = { version = "*", features = ["arch-cortex-m", "defmt", "executor-interrupt", "executor-thread", "integrated-timers"] }
embassy-rp = { version = "*", features = ["critical-section-impl", "defmt", "time-driver"] }
embassy-time = { version = "*", features = ["defmt", "defmt-timestamp-uptime"] }
panic-probe = { version = "*", features = ["print-defmt"] }
portable-atomic = { version = "*", features = ["critical-section"] }
static_cell = "*"
[profile.release]
debug = 2
lto = true
opt-level = "z"