18 lines
477 B
TOML
18 lines
477 B
TOML
[package]
|
|
name = "pico-website"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
embassy-executor = {version="*", features = ["task-arena-size-32768", "arch-cortex-m", "executor-thread", "executor-interrupt", "defmt"]}
|
|
embassy-rp = {version ="*", features = ["rp2040", "time-driver", "critical-section-impl"] }
|
|
embassy-time = "*"
|
|
embassy-usb-logger = "*"
|
|
|
|
defmt-rtt = "*"
|
|
panic-probe = "*"
|
|
cortex-m = { version = "*", features = ["inline-asm"] }
|
|
cortex-m-rt = "*"
|
|
|
|
log = "*"
|