From 30f6bd43a4b752030401959376013c8d5bb8fe93 Mon Sep 17 00:00:00 2001 From: Andrew Poelstra Date: Thu, 22 Aug 2024 16:51:53 +0000 Subject: [PATCH] Add primitives to the CRATES list This should have been done when we introduced the `primitives` crate - epic fail. Intentionally put it before `fuzz` because of the known bug in the CI script where nothing after `fuzz` gets tested. --- contrib/crates.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/crates.sh b/contrib/crates.sh index c3d605eee..1b98e5bbe 100644 --- a/contrib/crates.sh +++ b/contrib/crates.sh @@ -5,4 +5,4 @@ # shellcheck disable=SC2034 # Crates in this workspace to test (note "fuzz" is only built not tested). -CRATES=("addresses" "base58" "bitcoin" "hashes" "internals" "io" "units" "fuzz") +CRATES=("addresses" "base58" "bitcoin" "primitives" "hashes" "internals" "io" "units" "fuzz")