From 40ba9f881ea6c76b6cab62bc05a96860f45c603d Mon Sep 17 00:00:00 2001 From: firestar99 Date: Wed, 27 Aug 2025 15:53:28 +0200 Subject: [PATCH 1/2] ci: detect out of date Cargo.lock --- .github/workflows/build-dev-and-ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/build-dev-and-ci.yml b/.github/workflows/build-dev-and-ci.yml index 016d42cbb3..c55019fa2b 100644 --- a/.github/workflows/build-dev-and-ci.yml +++ b/.github/workflows/build-dev-and-ci.yml @@ -47,6 +47,11 @@ jobs: echo "Latest updated version:" rustc --version + - name: 🦀 Fetch Rust dependencies + run: | + echo "If it fails here, the committed Cargo.lock may be out of date" + cargo fetch --locked + - name: ✂ Replace template in of index.html run: | # Remove the INDEX_HTML_HEAD_REPLACEMENT environment variable for build links (not master deploys) From 50592fe078d4ff7442c2ade4a9469f00873d553b Mon Sep 17 00:00:00 2001 From: firestar99 Date: Wed, 27 Aug 2025 11:42:36 +0200 Subject: [PATCH 2/2] update Cargo.lock --- Cargo.lock | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.lock b/Cargo.lock index e38f273a25..7c18c5c4e6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1777,6 +1777,7 @@ version = "0.29.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8babf46d4c1c9d92deac9f7be466f76dfc4482b6452fc5024b5e8daf6ffeb3ee" dependencies = [ + "bytemuck", "libm", "serde", ]