Update Cargo.lock and add book to gitignore.

This commit is contained in:
Bauke 2022-10-31 11:56:08 +01:00
parent c4c45a0368
commit 91a5cc4203
Signed by: Bauke
GPG Key ID: C1C0F29952BCF558
2 changed files with 15 additions and 0 deletions

3
.gitignore vendored
View File

@ -4,3 +4,6 @@ target/
# Code coverage results # Code coverage results
coverage/ coverage/
# mdBook output
hooked-book/book/

12
Cargo.lock generated
View File

@ -419,6 +419,8 @@ dependencies = [
"clap", "clap",
"color-eyre", "color-eyre",
"hooked-library", "hooked-library",
"owo-colors",
"subprocess",
"tera", "tera",
] ]
@ -916,6 +918,16 @@ version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
[[package]]
name = "subprocess"
version = "0.2.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0c2e86926081dda636c546d8c5e641661049d7562a68f5488be4a1f7f66f6086"
dependencies = [
"libc",
"winapi",
]
[[package]] [[package]]
name = "syn" name = "syn"
version = "1.0.103" version = "1.0.103"