How to Fix Broken Build Caches in Cargo

Fix broken Cargo build caches by deleting the target directory to force a clean rebuild.

Delete the target directory to force Cargo to rebuild all artifacts from scratch. This clears corrupted or stale build caches that cause compilation failures.

rm -rf target

If you are updating the Rust toolchain version as described in ADMIN_TASKS.md, also update the version in rust-toolchain and .github/workflows/main.yml before running the command.