From 33c529fd8a4de5aef69659d6fa2961be0f72cf81 Mon Sep 17 00:00:00 2001 From: John Coffey Date: Sun, 20 Sep 2026 15:10:47 -0700 Subject: [PATCH] Cargo.lock: the base64 sequoia-openpgp actually resolves to Left over from this morning's dependabot merges: the minor-and-patch group freed sequoia-openpgp to use base64 0.22.1, but the lockfile still pinned 0.21.7 for it. Any cargo invocation rewrites the line, so it was showing up as spurious drift in unrelated diffs. No manifest changed and nothing is upgraded here; this only writes down what cargo already resolves. --- Cargo.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.lock b/Cargo.lock index caf1f43..75f8177 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7533,7 +7533,7 @@ dependencies = [ "aes-gcm 0.10.3", "anyhow", "argon2 0.5.3", - "base64 0.21.7", + "base64 0.22.1", "block-padding 0.3.3", "blowfish 0.9.1", "buffered-reader",