From 570909977e75b9b6449ff6551a7728c15842b145 Mon Sep 17 00:00:00 2001 From: Volker Mische Date: Fri, 6 Dec 2024 21:15:21 +0100 Subject: [PATCH] chore: fix CI (#376) Only enabling the `arb` feature on the `codetable` crate now fails, due to changes to the `arbitrary_derive` crate. It now errors if the enum its derived from is empty. Which it is in our case. --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5b39d19..7545185 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -148,7 +148,7 @@ jobs: tool: cargo-hack - name: Cargo Hack - Check each feature - run: cargo hack check -p multihash-codetable --each-feature + run: cargo hack check -p multihash-codetable --each-feature --exclude-features arb shell: bash env: RUSTFLAGS: -D warnings