From 12d8cb8990c0ac6b109eb5a6973eb9a1041fe6e0 Mon Sep 17 00:00:00 2001 From: Marijn Suijten Date: Wed, 1 May 2024 10:30:17 +0200 Subject: [PATCH] api_gen: Fix MSRV check by forcing a higher `regex-syntax` This crate should probably be exempt from MSRV checks though, as it is not published. --- api_gen/Cargo.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/api_gen/Cargo.toml b/api_gen/Cargo.toml index ca40959..0b330ec 100644 --- a/api_gen/Cargo.toml +++ b/api_gen/Cargo.toml @@ -7,3 +7,5 @@ publish = false [dependencies] # Version-locked to not make the CI go out of date bindgen = "=0.69.4" +# Force a higher version to fix https://github.com/rust-lang/regex/issues/770 in MSRV +regex-syntax = "0.6.26"