rust-embassy-template/Cargo.toml

14 lines
515 B
TOML
Raw Normal View History

2024-03-11 20:58:53 +00:00
[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.5.0", features = ["task-arena-size-32768", "arch-cortex-m", "executor-thread", "executor-interrupt", "integrated-timers"] }
embassy-rp = { version = "0.1.0", features = ["unstable-pac", "time-driver", "critical-section-impl"] }
embassy-futures = { version = "0.1.1" }
2024-04-17 00:08:47 +00:00
cortex-m-rt = "0.7.4"