From 42d256e926b911fce95e09e5c361cf9e54e36be7 Mon Sep 17 00:00:00 2001 From: Kirill Chibisov Date: Fri, 24 Oct 2025 21:01:20 +0900 Subject: [PATCH] ci: fix version of smol_str --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3aa59dce1..691265fe0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -134,6 +134,10 @@ jobs: key: cargo-${{ matrix.toolchain }}-${{ matrix.platform.name }}-never-intended-to-be-found restore-keys: cargo-${{ matrix.toolchain }}-${{ matrix.platform.name }} + - name: Generate lockfile + # Also updates the crates.io index + run: cargo generate-lockfile && cargo update -p smol_str --precise 0.3.2 + - name: Install GCC Multilib if: (matrix.platform.os == 'ubuntu-latest') && contains(matrix.platform.target, 'i686') run: sudo apt-get update && sudo apt-get install gcc-multilib