Skip to content

Commit 82fd1ab

Browse files
committed
fix: loading of dependencies
1 parent c2bc5d5 commit 82fd1ab

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,19 +65,19 @@ fn list_crates(root: &PathBuf) -> Result<BTreeMap<CrateId, Crate>> {
6565
let mut build_dependencies = Vec::new();
6666

6767
for (k, _) in parsed.dependencies {
68-
if k.starts_with("embassy-") {
68+
if k.starts_with("embassy-") || k.starts_with("cyw43") {
6969
dependencies.push(k);
7070
}
7171
}
7272

7373
for (k, _) in parsed.dev_dependencies {
74-
if k.starts_with("embassy-") {
74+
if k.starts_with("embassy-") || k.starts_with("cyw43") {
7575
dev_dependencies.push(k);
7676
}
7777
}
7878

7979
for (k, _) in parsed.build_dependencies {
80-
if k.starts_with("embassy-") {
80+
if k.starts_with("embassy-") || k.starts_with("cyw43") {
8181
build_dependencies.push(k);
8282
}
8383
}

0 commit comments

Comments
 (0)