Pin the `memchr` test-only transitive dependency of `regex` 2023-08-one-less-feature-dep
authorMatt Corallo <git@bluematt.me>
Mon, 28 Aug 2023 19:45:37 +0000 (19:45 +0000)
committerMatt Corallo <git@bluematt.me>
Mon, 28 Aug 2023 21:16:54 +0000 (21:16 +0000)
ci/ci-tests.sh

index ef9ecf7b86d8653d5bdf1b7ab758032425bd33d6..8c675a654be9304d3066b2af4e776dc6492ab0b3 100755 (executable)
@@ -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