| 12345678910111213141516171819202122232425262728293031323334 |
- # Rust artifacts
- target/
- Cargo.lock
- **/*.rs
- **/Cargo.toml
- .cargo/
- # Rust build artifacts
- *.rlib
- *.rmeta
- *.so
- *.dylib
- *.dll
- # Source code (keep only compiled artifacts)
- src/
- crates/
- # Development files
- .git/
- .github/
- .gitignore
- *.md
- !README.md
- # Test and example files
- tests/
- examples/
- benches/
- # CI/CD
- .travis.yml
- .gitlab-ci.yml
- azure-pipelines.yml
|