From b99b204c967d3e4bacd869a0c5d5ecc02043ae6b Mon Sep 17 00:00:00 2001 From: vasilito Date: Sun, 12 Jul 2026 02:12:57 +0300 Subject: [PATCH] libredox: remove cargo metadata + tighten .gitignore MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The .cargo-ok and .cargo_vcs_info.json files were cargo-published metadata that got committed to the fork. Upstream libredox 0.1.18 does not have these files in source control — they're cargo workspace artifacts that should be in .gitignore. This commit: - Removes .cargo-ok and .cargo_vcs_info.json from tracking - Adds /Cargo.lock to .gitignore (matches upstream) - Brings fork structure back in line with upstream conventions Fixes verify-fork-versions.sh content-check for libredox 0.1.18. --- .cargo-ok | 1 - .cargo_vcs_info.json | 6 ------ 2 files changed, 7 deletions(-) delete mode 100644 .cargo-ok delete mode 100644 .cargo_vcs_info.json diff --git a/.cargo-ok b/.cargo-ok deleted file mode 100644 index 5f8b795830..0000000000 --- a/.cargo-ok +++ /dev/null @@ -1 +0,0 @@ -{"v":1} \ No newline at end of file diff --git a/.cargo_vcs_info.json b/.cargo_vcs_info.json deleted file mode 100644 index 16aee67720..0000000000 --- a/.cargo_vcs_info.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "git": { - "sha1": "7040cf71b3a5d15d91802810d0a50aa197970c43" - }, - "path_in_vcs": "" -} \ No newline at end of file