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:
parent
4bce69db27
commit
9a2c856be6
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue