46 lines
494 B
Plaintext
46 lines
494 B
Plaintext
# Rust build artifacts
|
|
/target/
|
|
/wasm/target/
|
|
/wasm/pkg/
|
|
debug/
|
|
*.pdb
|
|
|
|
# Cargo lock (optional for libraries)
|
|
Cargo.lock
|
|
!/wasm/Cargo.lock
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Test files
|
|
*.pdf
|
|
!tests/fixtures/*.pdf
|
|
|
|
# Build cache
|
|
**/*.rs.bk
|
|
|
|
# NAPI generated (regenerated by `napi prepublish` during CI)
|
|
napi/index.js
|
|
napi/index.d.ts
|
|
|
|
# Local samples and scripts
|
|
samples/
|
|
scripts/
|
|
|
|
# Test output
|
|
test_output/
|
|
.firecrawl/
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.pyc
|
|
.pytest_cache/
|