initial
This commit is contained in:
parent
f3c3eb338e
commit
d050cecc0e
5 changed files with 2038 additions and 0 deletions
39
.gitignore
vendored
Normal file
39
.gitignore
vendored
Normal 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/
|
Loading…
Add table
Add a link
Reference in a new issue