From 92305dd829abe766582dbb57b37c19cede90f04b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 29 May 2026 20:06:39 +0000 Subject: [PATCH 1/2] Bump rand from 0.8.5 to 0.8.6 in /rust Bumps [rand](https://github.com/rust-random/rand) from 0.8.5 to 0.8.6. - [Release notes](https://github.com/rust-random/rand/releases) - [Changelog](https://github.com/rust-random/rand/blob/0.8.6/CHANGELOG.md) - [Commits](https://github.com/rust-random/rand/compare/0.8.5...0.8.6) --- updated-dependencies: - dependency-name: rand dependency-version: 0.8.6 dependency-type: indirect ... Signed-off-by: dependabot[bot] --- rust/Cargo.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rust/Cargo.lock b/rust/Cargo.lock index ba4cc8b..0dc3ebe 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -1,6 +1,6 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. -version = 3 +version = 4 [[package]] name = "addr2line" @@ -837,9 +837,9 @@ dependencies = [ [[package]] name = "rand" -version = "0.8.5" +version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" +checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a" dependencies = [ "libc", "rand_chacha", From 772bc767c4ed316ee04c044734595705791d22e7 Mon Sep 17 00:00:00 2001 From: konard Date: Fri, 29 May 2026 20:45:40 +0000 Subject: [PATCH 2/2] Fix Cargo.lock version incompatibility with nightly-2022-08-22 Downgrade lock file version from 4 to 3 so the CI toolchain (Cargo 1.65, nightly-2022-08-22) can parse it. Lock file v4 was introduced in Cargo 1.78; the dependabot bump of rand regenerated the lock file using a newer Cargo that produced v4, causing the build to fail with "lock file version 4 was found, but this version of Cargo does not understand this lock file". --- rust/Cargo.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/Cargo.lock b/rust/Cargo.lock index 0dc3ebe..16b3616 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -1,6 +1,6 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. -version = 4 +version = 3 [[package]] name = "addr2line"