From 311b716d5c0b48f0a7209ff1b99ae06e49912885 Mon Sep 17 00:00:00 2001 From: Josh Wu Date: Fri, 20 Mar 2026 18:44:49 +0800 Subject: [PATCH] Add --locked to allow installing cargo-all-features --- .github/workflows/python-build-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-build-test.yml b/.github/workflows/python-build-test.yml index eb77045..41632d7 100644 --- a/.github/workflows/python-build-test.yml +++ b/.github/workflows/python-build-test.yml @@ -69,7 +69,7 @@ jobs: components: clippy,rustfmt toolchain: ${{ matrix.rust-version }} - name: Install Rust dependencies - run: cargo install cargo-all-features --version 1.11.0 # allows building/testing combinations of features + run: cargo install cargo-all-features --version 1.11.0 --locked # allows building/testing combinations of features - name: Check License Headers run: cd rust && cargo run --features dev-tools --bin file-header check-all - name: Rust Build