- Add Go sync unit tests, functional tests, and async unit tests - Add package-lock.json for reproducible JS installs - Add Cargo.lock for reproducible Rust builds - Gitignore *.egg-info/ (Python packaging artifacts)
51 lines
487 B
Text
51 lines
487 B
Text
# Compiled binaries
|
|
*.o
|
|
*.exe
|
|
*.out
|
|
*.class
|
|
*.beam
|
|
/un
|
|
/un_go
|
|
/un_rust
|
|
/un_cpp
|
|
/un_d
|
|
/un_nim
|
|
/un_v
|
|
/un_zig
|
|
/Un.class
|
|
|
|
__pycache__/
|
|
.venv/
|
|
*.egg-info/
|
|
|
|
# Build directories
|
|
_build/
|
|
deps/
|
|
node_modules/
|
|
target/
|
|
zig-cache/
|
|
zig-out/
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Test outputs
|
|
*.log
|
|
/output/
|
|
__pycache__/
|
|
*.pyc
|
|
science-results/
|
|
science-results.xml
|
|
clients/c/un
|
|
clients/c/examples/fibonacci
|
|
clients/c/examples/hello_world
|
|
clients/c/tests/test_library
|
|
build/
|