From afc5a02fc6250270555c566bf4cbbd08fd427480 Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Mon, 28 Aug 2023 19:45:37 +0000 Subject: [PATCH] Pin the `memchr` test-only transitive dependency of `regex` --- ci/ci-tests.sh | 3 +++ 1 file changed, 3 insertions(+) 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 -- 2.39.5