picow/Cargo.toml

24 lines
795 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 16:04:35 -07:00
cyw43 = { version = "*", features = ["defmt", "firmware-logs"] }
cyw43-pio = { version = "*", features = ["defmt"] }
2024-10-11 23:48:37 -07:00
defmt = "*"
defmt-rtt = "*"
2024-10-12 16:04:35 -07:00
embassy-executor = { version = "*", features = ["arch-cortex-m", "defmt", "executor-interrupt", "executor-thread", "integrated-timers", "task-arena-size-98304"] }
2024-10-11 23:48:37 -07:00
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"