rust-embassy-template/Cargo.toml
hodasemi 12daf78bd3
Some checks failed
Build on master branch / Build (push) Has been cancelled
Run cargo machete
2025-02-23 09:10:54 +01:00

32 lines
732 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",
] }
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"]