add cargo.lock

This commit is contained in:
notohh 2024-06-07 22:00:43 -04:00
parent 63ca475a50
commit 493995b280
Signed by: notohh
GPG key ID: BD47506D475EE86D
3 changed files with 1239 additions and 5 deletions

4
.gitignore vendored
View file

@ -4,10 +4,6 @@
debug/ debug/
target/ 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 # These are backup files generated by rustfmt
**/*.rs.bk **/*.rs.bk

1238
Cargo.lock generated Normal file

File diff suppressed because it is too large Load diff

View file

@ -31,7 +31,7 @@
src = self; src = self;
cargoLock = { cargoLock = {
lockFile = ./.; lockFile = ./Cargo.lock;
}; };
nativeBuildInputs = with pkgs; [pkg-config]; nativeBuildInputs = with pkgs; [pkg-config];