Skip to content

Commit 704ae8b

Browse files
doublegateclaude
andcommitted
fix: exclude fuzz directory from workspace
The fuzz directory contains cargo-fuzz targets that require nightly Rust and have incompatible build configurations with the main workspace (ASAN, sanitizer coverage, custom RUSTFLAGS, etc.). Previously, the fuzz directory was not explicitly excluded, causing workspace resolution errors in CI: error: current package believes it's in a workspace when it's not Added fuzz/ to workspace.exclude to keep it as an independent package, similar to wraith-xdp and spectre-implant which also have special build requirements. Fixes Fuzz workflow failures in CI. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 946a41d commit 704ae8b

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ members = [
3636
exclude = [
3737
"crates/wraith-xdp",
3838
"clients/wraith-redops/spectre-implant",
39+
"fuzz",
3940
]
4041

4142
[workspace.package]

0 commit comments

Comments
 (0)