rust-embassy-template/Cargo.toml
hodasemi 0014635cae
Some checks failed
Merge Build / Build (pull_request) Failing after 8m20s
Update for rp2350
2025-02-12 20:22:10 +01:00

24 lines
603 B
TOML

[package]
name = "rust-embassy-template"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
embassy-executor = { version = "0.7.0", features = [
"task-arena-size-32768",
"arch-cortex-m",
"executor-thread",
"executor-interrupt",
] }
embassy-rp = { version = "0.3.1", features = [
"unstable-pac",
"time-driver",
"critical-section-impl",
"rp235xa",
] }
embassy-futures = { version = "0.1.1" }
cortex-m-rt = "0.7.5"
cortex-m = { version = "0.7.7", features = ["inline-asm"] }