.npmignore 354 B

12345678910111213141516171819202122232425262728293031323334
  1. # Rust artifacts
  2. target/
  3. Cargo.lock
  4. **/*.rs
  5. **/Cargo.toml
  6. .cargo/
  7. # Rust build artifacts
  8. *.rlib
  9. *.rmeta
  10. *.so
  11. *.dylib
  12. *.dll
  13. # Source code (keep only compiled artifacts)
  14. src/
  15. crates/
  16. # Development files
  17. .git/
  18. .github/
  19. .gitignore
  20. *.md
  21. !README.md
  22. # Test and example files
  23. tests/
  24. examples/
  25. benches/
  26. # CI/CD
  27. .travis.yml
  28. .gitlab-ci.yml
  29. azure-pipelines.yml