Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions contrib/run_clippy.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"--workspace",
"--all-features",
"--all-targets",
"--target-dir", "target/clippy",
]

# Exclude dash-fuzz on Windows (honggfuzz doesn't support Windows)
Expand Down
3 changes: 2 additions & 1 deletion contrib/verify_ffi.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ def build_ffi_crates(repo_root: Path) -> bool:
"""Build all FFI crates to regenerate headers."""
print(" Building FFI crates...")
result = subprocess.run(
["cargo", "build", "--quiet"] + [f"-p={crate}" for crate in FFI_CRATES],
["cargo", "build", "--quiet", "--target-dir", "target/verify-ffi"]
+ [f"-p={crate}" for crate in FFI_CRATES],
cwd=repo_root,
capture_output=True,
text=True
Expand Down