From 3e8235757ce14d1fcf2da4d7662e6c2b12db3f74 Mon Sep 17 00:00:00 2001 From: Elias Rohrer Date: Fri, 8 Dec 2023 12:50:34 +0100 Subject: [PATCH] f Pin `regex` in `lightning-transaction-sync` --- ci/ci-tests.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ci/ci-tests.sh b/ci/ci-tests.sh index 6cd300206ff..72bb2e53528 100755 --- a/ci/ci-tests.sh +++ b/ci/ci-tests.sh @@ -44,6 +44,9 @@ if [[ "$HOST_PLATFORM" != *windows* ]]; then # reqwest 0.11.21 had a regression that broke its 1.63.0 MSRV [ "$RUSTC_MINOR_VERSION" -lt 65 ] && cargo update -p reqwest --precise "0.11.20" --verbose + # Starting with version 1.10.0, the `regex` crate has an MSRV of rustc 1.65.0. + [ "$RUSTC_MINOR_VERSION" -lt 65 ] && cargo update -p regex --precise "1.9.6" --verbose + ELECTRS_DL_ENDPOINT="https://github.com/RCasatta/electrsd/releases/download/electrs_releases" ELECTRS_VERSION="esplora_a33e97e1a1fc63fa9c20a116bb92579bbf43b254" BITCOIND_DL_ENDPOINT="https://bitcoincore.org/bin/"