v1.1.2-fix
fix: resolve Rust borrow-of-moved-value error in check_tools
res_dir PathBuf was moved into search_dirs on line 74, then borrowed
again on line 76 for res_dir.join("tools"). Added .clone() to allow
both pushes.
This was blocking the v1.1.2 GitHub Actions release build on both
Windows and macOS runners.