Add cargo.lock

This commit is contained in:
Gabriel Simmer 2023-07-19 21:26:11 +01:00
parent c2449dcaf1
commit 1f001de0c3
Signed by: arch
GPG key ID: C81B106D46C5B875
4 changed files with 2447 additions and 7 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

2443
Cargo.lock generated Normal file

File diff suppressed because it is too large Load diff

View file

@ -114,11 +114,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1689631193, "lastModified": 1689752456,
"narHash": "sha256-AGSkBZaiTODQc8eT1rZDrQIjtb8JtFwJ0wVPzArlrnM=", "narHash": "sha256-VOChdECcEI8ixz8QY+YC4JaNEFwQd1V8bA0G4B28Ki0=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "57695599bdc4f7bfe5d28cfa23f14b3d8bdf8a5f", "rev": "7f256d7da238cb627ef189d56ed590739f42f13b",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -133,6 +133,7 @@
rust-analyzer rust-analyzer
sqlite sqlite
sqlx-cli sqlx-cli
flyctl
]; ];
}; };
}); });