100daysofrust/.gitignore # Rust build output target/ **/target/ # Cargo package manager files Cargo.lock **/Cargo.lock # Backup and temporary files *.rs.bk *.swp *.swo *~ *.tmp # IDEs and editors .vscode/ .idea/ *.code-workspace # OS-specific files .DS_Store Thumbs.db # Logs *.log # Byebug command history .byebug_history # Node modules (if any JS tooling) node_modules/ # Coverage and test output coverage/ *.profraw # Miscellaneous *.bak *.old *.orig *.rej