45 lines
837 B
TOML
45 lines
837 B
TOML
[package]
|
|
name = "pico-website"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
embassy-executor = { version = "*", features = [
|
|
"defmt",
|
|
"nightly",
|
|
"arch-cortex-m",
|
|
"executor-thread",
|
|
"executor-interrupt",
|
|
] }
|
|
embassy-rp = { version = "*", features = [
|
|
"defmt",
|
|
"unstable-pac",
|
|
"rp2040",
|
|
"time-driver",
|
|
"critical-section-impl",
|
|
] }
|
|
embassy-time = "*"
|
|
embassy-usb-logger = "*"
|
|
embassy-net = { version = "*", features = [
|
|
"defmt",
|
|
"proto-ipv4",
|
|
"tcp",
|
|
"dhcpv4",
|
|
"dns",
|
|
] }
|
|
cyw43-pio = "*"
|
|
cyw43 = "*"
|
|
|
|
embedded-io-async = "*"
|
|
defmt = "*"
|
|
defmt-rtt = "*"
|
|
panic-probe = "*"
|
|
cortex-m = { version = "*", features = ["inline-asm"] }
|
|
cortex-m-rt = "*"
|
|
static_cell = "*"
|
|
portable-atomic = { version = "*", features = ["critical-section"] }
|
|
heapless = "*"
|
|
rand_core = "*"
|
|
|
|
log = "*"
|