Update gitignore file

Recently we introduced a workspace but did not update the git ignore
file. Ignore lock files, build artifacts, test artifacts, and fuzz
artifacts.
This commit is contained in:
Tobin C. Harding 2022-09-16 12:13:13 +10:00
parent 4bce69db27
commit 9a2c856be6
1 changed files with 15 additions and 4 deletions

19
.gitignore vendored
View File

@ -1,7 +1,18 @@
target # .gitignore for rust-bitcoin repository workspace.
Cargo.lock
dep_test
#fuzz # Lock files
Cargo.lock
internals/Cargo.lock
bitcoin/Cargo.lock
# Build artifacts
target
internals/target
bitcoin/target
# Test artifacts
bitcoin/dep_test
# Fuzz artifacts
fuzz/hfuzz_target fuzz/hfuzz_target
fuzz/hfuzz_workspace fuzz/hfuzz_workspace