commit Cargo.lock

This commit is contained in:
Ryan Heywood 2025-07-11 15:22:56 -04:00
parent 0d70cdac92
commit d1c3bf9f98
Signed by: ryan
GPG Key ID: 8E401478A3FBEF72
2 changed files with 16 additions and 4 deletions

4
.gitignore vendored
View File

@ -4,10 +4,6 @@
debug/
target/
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
Cargo.lock
# These are backup files generated by rustfmt
**/*.rs.bk

16
Cargo.lock generated Normal file
View File

@ -0,0 +1,16 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 4
[[package]]
name = "libc"
version = "0.2.172"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
[[package]]
name = "nit"
version = "0.1.0"
dependencies = [
"libc",
]