Run cargo machete
Some checks failed
Build on master branch / Build (push) Has been cancelled

This commit is contained in:
hodasemi 2025-02-23 09:10:54 +01:00
parent 2b2385d1ed
commit 12daf78bd3
3 changed files with 13 additions and 1 deletions

View file

@ -21,5 +21,10 @@ jobs:
with:
targets: ${{ join(fromJSON(steps.read_rust_toolchain.outputs.value), ',' ) }}
- name: Cargo Machete
run: |
cargo install cargo-machete
cargo machete
- name: Build
run: cargo build

View file

@ -21,5 +21,10 @@ jobs:
with:
targets: ${{ join(fromJSON(steps.read_rust_toolchain.outputs.value), ',' ) }}
- name: Cargo Machete
run: |
cargo install cargo-machete
cargo machete
- name: Build
run: cargo build

View file

@ -18,7 +18,6 @@ embassy-rp = { version = "0.3.1", features = [
"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"] }
@ -28,3 +27,6 @@ rp2350 = ["embassy-rp/rp235xa"]
rp2040 = ["embassy-rp/rp2040"]
default = ["rp2350"]
[package.metadata.cargo-machete]
ignored = ["cortex-m-rt", "cortex-m"]