mirror of
https://github.com/imjasonh/krust
synced 2026-07-06 22:12:32 +00:00
- Integrate cargo-zigbuild as the default build backend, falling back to cargo build with best-effort linker detection if not installed - Auto-install rustup targets when missing (rustup target add) - Use persistent target/krust/ directory instead of temp dirs so incremental compilation works across runs - Remove .cargo/config.toml from repo (add to .gitignore) since zigbuild handles cross-linker configuration - Improve error messages: suggest cargo-zigbuild when linker not found - Simplify CI to use zigbuild instead of per-target system linkers - Simplify Makefile by removing setup-cross-compile/verify targets - Update README and CLAUDE.md to reflect new approach https://claude.ai/code/session_01EcsZDNeWn56wFqryb4Wq7r
24 lines
183 B
Text
24 lines
183 B
Text
# Rust
|
|
target/
|
|
**/*.rs.bk
|
|
*.pdb
|
|
|
|
# IDEs
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Cargo
|
|
Cargo.lock
|
|
.cargo/
|
|
|
|
# Coverage
|
|
tarpaulin-report.html
|
|
cobertura.xml
|
|
lcov.info
|