X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=ci%2Fci-tests.sh;h=8c675a654be9304d3066b2af4e776dc6492ab0b3;hb=0d8b0961a5e747c6bce4b866a9e1390a35b73d24;hp=ef9ecf7b86d8653d5bdf1b7ab758032425bd33d6;hpb=131560e08fa4f66b8ce9302cde637f87602c86b0;p=rust-lightning diff --git a/ci/ci-tests.sh b/ci/ci-tests.sh index ef9ecf7b8..8c675a654 100755 --- a/ci/ci-tests.sh +++ b/ci/ci-tests.sh @@ -32,6 +32,9 @@ PIN_RELEASE_DEPS # pin the release dependencies in our main workspace # The proc-macro2 crate switched to Rust edition 2021 starting with v1.0.66, i.e., has MSRV of 1.56 [ "$RUSTC_MINOR_VERSION" -lt 56 ] && cargo update -p proc-macro2 --precise "1.0.65" --verbose +# The memchr crate switched to an MSRV of 1.60 starting with v2.6.0 +[ "$RUSTC_MINOR_VERSION" -lt 60 ] && cargo update -p memchr --precise "2.5.0" --verbose + [ "$LDK_COVERAGE_BUILD" != "" ] && export RUSTFLAGS="-C link-dead-code" export RUST_BACKTRACE=1