22 lines
350 B
TOML
22 lines
350 B
TOML
[package]
|
|
name = "picorom-rs"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[[bin]]
|
|
name = "picorom-rs"
|
|
test = false
|
|
bench = false
|
|
|
|
[dependencies]
|
|
cortex-m = "0.7"
|
|
cortex-m-rt = "0.7"
|
|
panic-probe = { version = "1.0", features = ["print-defmt", "defmt-error"] }
|
|
rp-pico = "0.9"
|
|
embedded-hal = "1.0"
|
|
pio = "0.2"
|
|
pio-proc = "0.2"
|
|
|
|
defmt = "1.0"
|
|
defmt-rtt = "1.1"
|