1
0
Fork 0
mirror of https://github.com/archtechx/todo-system.git synced 2025-12-12 00:54:03 +00:00

recursively scan .gitignore files for excludes

This commit is contained in:
Samuel Štancl 2023-11-24 03:23:48 +01:00
parent a346a61c7c
commit dcbb07ac46
4 changed files with 38 additions and 4 deletions

7
Cargo.lock generated
View file

@ -96,6 +96,12 @@ version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7"
[[package]]
name = "glob"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
[[package]]
name = "heck"
version = "0.4.1"
@ -151,6 +157,7 @@ name = "todos"
version = "0.1.0"
dependencies = [
"clap",
"glob",
"termcolor",
]