From 2aecfa45ba01ce6477c1f50903329703fb7ffe5b Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Fri, 15 Dec 2023 22:39:57 +0000 Subject: [PATCH] Fix dev MSRV build of lightning-transaction-sync ...due to a transitive dependency of the `bitcoind` crate. --- ci/ci-tests.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ci/ci-tests.sh b/ci/ci-tests.sh index 374e3616c1..ca8e20f078 100755 --- a/ci/ci-tests.sh +++ b/ci/ci-tests.sh @@ -89,6 +89,8 @@ if [[ "$HOST_PLATFORM" != *windows* ]]; then [ "$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 + # Starting with version 0.5.9 (there is no .6-.8), the `home` crate has an MSRV of rustc 1.70.0. + [ "$RUSTC_MINOR_VERSION" -lt 70 ] && cargo update -p home --precise "0.5.5" --verbose DOWNLOAD_ELECTRS_AND_BITCOIND