From b93ba007eddba63ec9830cf710617438a7a7f32e Mon Sep 17 00:00:00 2001 From: Josh Wu Date: Fri, 28 Nov 2025 02:25:52 +0800 Subject: [PATCH] Rust: Fix cargo-all-features to 1.11.0 --- .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 f433a06a..6d4cbeab 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 # allows building/testing combinations of features + run: cargo install cargo-all-features --version 1.11.0 # 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