22 lines
665 B
TOML
22 lines
665 B
TOML
[package]
|
|
name = "picow"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
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"
|