# MicroHX .gitignore

# Build artifacts
/target/
**/target/

# Cargo lock (optional - uncomment if you want to track it)
# Cargo.lock

# IDE and editor files
.idea/
.vscode/
*.swp
*.swo
*~
.DS_Store

# Rust analyzer
.rust-analyzer/

# Test artifacts
*.profraw
*.profdata
coverage/
tarpaulin-report.html

# Documentation
/target/doc/

# Lua config (user-specific)
# ~/.config/microhx/ (not in repo)

# Plugin directories (user-specific)
/plugins/*/target/

# Temporary files
*.tmp
*.bak

# Logs
*.log
logs/

# Benchmark results
/criterion/

# Fuzzing
fuzz/artifacts/
fuzz/corpus/
