From e5beb44c6b8eee01c668b6b0d065cbd3271825f4 Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 28 May 2026 22:08:32 +0000 Subject: [PATCH] chore: stop ignoring Cargo.lock so dependency updates are tracked Cargo.lock is already tracked from the initial commit, but .gitignore contradictorily told git to ignore it, so dependency changes never made it into commits. For a binary crate the lockfile should be committed for reproducible builds. Drop the gitignore rule so updates flow through. Closes #12 https://claude.ai/code/session_012RmdaovmNWZVAim4XxCWwn --- .gitignore | 3 --- 1 file changed, 3 deletions(-) diff --git a/.gitignore b/.gitignore index b986e45..3ce8cd0 100644 --- a/.gitignore +++ b/.gitignore @@ -3,9 +3,6 @@ debug/ *.pdb -# Cargo -Cargo.lock - # IDE .idea/ .vscode/