rust-embassy-template/Cargo.toml

25 lines
603 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]
2025-02-12 19:22:10 +00:00
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",
] }
2024-03-11 20:58:53 +00:00
embassy-futures = { version = "0.1.1" }
2025-02-12 19:22:10 +00:00
cortex-m-rt = "0.7.5"
cortex-m = { version = "0.7.7", features = ["inline-asm"] }