We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2bc5d5 commit 82fd1abCopy full SHA for 82fd1ab
src/main.rs
@@ -65,19 +65,19 @@ fn list_crates(root: &PathBuf) -> Result<BTreeMap<CrateId, Crate>> {
65
let mut build_dependencies = Vec::new();
66
67
for (k, _) in parsed.dependencies {
68
- if k.starts_with("embassy-") {
+ if k.starts_with("embassy-") || k.starts_with("cyw43") {
69
dependencies.push(k);
70
}
71
72
73
for (k, _) in parsed.dev_dependencies {
74
75
dev_dependencies.push(k);
76
77
78
79
for (k, _) in parsed.build_dependencies {
80
81
build_dependencies.push(k);
82
83
0 commit comments