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.
This commit is contained in:
Andrew Poelstra 2024-08-22 16:51:53 +00:00
parent e1e0230827
commit 30f6bd43a4
No known key found for this signature in database
GPG Key ID: C588D63CE41B97C1
1 changed files with 1 additions and 1 deletions

View File

@ -5,4 +5,4 @@
# shellcheck disable=SC2034 # shellcheck disable=SC2034
# Crates in this workspace to test (note "fuzz" is only built not tested). # 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")