rust-embassy-template/Cargo.toml
RenovateBot 29a4e2701a
Some checks failed
Build on feature branch / Build (push) Failing after 19m28s
Update Rust crate embassy-rp to 0.4.0
2025-03-13 15:04:09 +00:00

32 lines
732 B
TOML

[package]
name = "rust-embassy-template"
version = "0.1.0"
edition = "2024"
# 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.4.0", features = [
"unstable-pac",
"time-driver",
"critical-section-impl",
"rp235xa",
] }
cortex-m-rt = "0.7.5"
cortex-m = { version = "0.7.7", features = ["inline-asm"] }
[features]
rp2350 = ["embassy-rp/rp235xa"]
rp2040 = ["embassy-rp/rp2040"]
default = ["rp2350"]
[package.metadata.cargo-machete]
ignored = ["cortex-m-rt", "cortex-m"]