picow/Cargo.toml

30 lines
1.1 KiB
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
2024-10-13 00:25:18 -07:00
[build-dependencies]
serde = { version = "*", features = ["derive"] }
serde_yaml = "*"
2024-10-11 18:24:55 -07:00
[dependencies]
2024-10-11 23:48:37 -07:00
cortex-m-rt = "*"
2024-10-13 21:01:33 -07:00
cyw43 = { git = "https://github.com/embassy-rs/embassy.git" }
cyw43-pio = { git = "https://github.com/embassy-rs/embassy.git" }
embassy-executor = { git = "https://github.com/embassy-rs/embassy.git", features = ["arch-cortex-m", "executor-interrupt", "executor-thread", "integrated-timers", "nightly"] }
embassy-net = { git = "https://github.com/embassy-rs/embassy.git", features = ["tcp", "udp", "raw", "dhcpv4", "dhcpv4-hostname", "dns", "proto-ipv4", "multicast"] }
embassy-rp = { git = "https://github.com/embassy-rs/embassy.git", features = ["critical-section-impl", "time-driver", "rp2040"] }
embassy-time = { git = "https://github.com/embassy-rs/embassy.git" }
embassy-usb-logger = { git = "https://github.com/embassy-rs/embassy.git" }
2024-10-12 20:39:28 -07:00
log ="*"
2024-10-12 19:58:43 -07:00
panic-halt = "*"
2024-10-11 23:48:37 -07:00
portable-atomic = { version = "*", features = ["critical-section"] }
2024-10-13 21:01:33 -07:00
rand = { version = "*", default-features = false }
2024-10-11 23:48:37 -07:00
static_cell = "*"
[profile.release]
debug = 2
lto = true
opt-level = "z"