Skip to content

Commit

Permalink
Fix dev MSRV build of lightning-transaction-sync
Browse files Browse the repository at this point in the history
...due to a transitive dependency of the `bitcoind` crate.
  • Loading branch information
TheBlueMatt committed Dec 15, 2023
1 parent 642240e commit 2aecfa4
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ci/ci-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 2aecfa4

Please sign in to comment.