From: Matt Corallo Date: Mon, 28 Aug 2023 19:45:37 +0000 (+0000) Subject: Pin the `memchr` test-only transitive dependency of `regex` X-Git-Tag: v0.0.117-alpha1~34^2 X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=afc5a02fc6250270555c566bf4cbbd08fd427480;p=rust-lightning Pin the `memchr` test-only transitive dependency of `regex` --- 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