38 lines
378 B
Plaintext
38 lines
378 B
Plaintext
# Zig build artifacts
|
|
zig-out/
|
|
zig-cache/
|
|
.zig-cache/
|
|
|
|
# Local build directories
|
|
/build/
|
|
|
|
# Compiled binaries
|
|
*.exe
|
|
*.o
|
|
*.obj
|
|
*.so
|
|
*.dylib
|
|
*.dll
|
|
*.a
|
|
*.lib
|
|
|
|
# Debug artifacts
|
|
*.pdb
|
|
*.dSYM/
|
|
|
|
# Editor/IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
|
|
# If using RocksDB or other local data
|
|
/data/
|
|
*.db
|
|
*.log
|
|
|
|
# Dependency cache (if using gyro or other package managers)
|
|
.gyro/
|
|
deps.zig |