From 65167a00ff6d2fb8374121817493bcba35dc3e1b Mon Sep 17 00:00:00 2001 From: Christopher Berner Date: Sat, 16 Mar 2024 19:59:20 -0700 Subject: [PATCH] Pin ctrlc version to fix MSRV CI issue --- Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index d369df30..ec2a76d7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -33,7 +33,8 @@ redb1 = { version = "=1.0.0", package = "redb" } # Just benchmarking dependencies [target.'cfg(not(target_os = "wasi"))'.dev-dependencies] -ctrlc = "3.2.3" +# Pinned to compatibility with MSRV +ctrlc = "=3.2.3" fastrand = "2.0.0" lmdb-rkv = "0.14.0" sanakirja = "=1.3.3"