From 9db1a0a18e81c8349ec6ec168ae5225ce823a5c2 Mon Sep 17 00:00:00 2001 From: Riccardo Casatta Date: Tue, 1 Oct 2024 15:41:13 +0200 Subject: [PATCH] bring back pin for regex --- contrib/test.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/contrib/test.sh b/contrib/test.sh index d796c1df..b5ff3b0b 100755 --- a/contrib/test.sh +++ b/contrib/test.sh @@ -7,6 +7,11 @@ FEATURES="compiler serde rand base64 simplicity" cargo --version rustc --version +# Pin dependencies required to build with Rust 1.64 +if cargo --version | grep "1\.64"; then + cargo update -p regex --precise 1.8.4 +fi + # Format if told to if [ "$DO_FMT" = true ] then