From d14cccbad52852ff6f2b45f61c998a34ae6f2c79 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Fri, 22 Jul 2022 11:31:54 +1000 Subject: [PATCH] Add alloc to features Remove the comment and add "alloc" to the features list now that we have bumped the MSRV. --- contrib/test.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/contrib/test.sh b/contrib/test.sh index 9dcea78..8eb7d3f 100755 --- a/contrib/test.sh +++ b/contrib/test.sh @@ -2,8 +2,7 @@ set -ex -# TODO: Add "alloc" once we bump MSRV to past 1.29 -FEATURES="bitcoin_hashes global-context lowmemory rand recovery serde std" +FEATURES="bitcoin_hashes global-context lowmemory rand recovery serde std alloc" # These features are typically enabled along with the 'std' feature, so we test # them together with 'std'. STD_FEATURES="rand-std bitcoin-hashes-std"