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 85e8443 commit 90ba835Copy full SHA for 90ba835
build.rs
@@ -75,7 +75,9 @@ fn collect_rust_files(dir: &Path) -> Vec<PathBuf> {
75
let mut rust_files = Vec::new();
76
77
for entry in WalkDir::new(dir) {
78
- let entry = entry.unwrap();
+ let Ok(entry) = entry else {
79
+ continue;
80
+ };
81
let path = entry.path();
82
83
// Skip any path that contains "target" directory
0 commit comments