This commit is contained in:
Matthew Ryan Dillon 2025-05-10 15:37:35 -04:00
parent f3c3eb338e
commit d050cecc0e
5 changed files with 2038 additions and 0 deletions

39
.gitignore vendored Normal file
View file

@ -0,0 +1,39 @@
# Rust
/target/
**/*.rs.bk
# By default, Cargo will ignore "Cargo.lock" for libraries, but include for binaries
Cargo.lock
# Next line is for macOS Finder/Spotlight
.DS_Store
# VSCode/
.vscode/
# CLion
.idea/
# Other common
*.log
*.tmp
*.swp
*.swo
*.bak
*~
# dotenv, custom local env/config
.env
.env.*
*.local
# compiled output
*.out
*.exe
*.bin
*.o
*.obj
# Coverage/test/artifacts
target/coverage/
coverage/