From 5c7dc03109fcdaf9ec2fdcdf5df0fcc5e6b0cf0d Mon Sep 17 00:00:00 2001 From: Wilfred Hughes Date: Sun, 5 Oct 2025 21:15:24 +0100 Subject: [PATCH] Conservatively bump cc Cargo.lock already specifies a newer version, but there's a ton of bugfixes in each cc version and raising the requirement ensures that users benefit from more recent fixes. Difftastic has a non-trivial amount of C code from vendored parsers and newer cc ensures that difftastic builds correctly even in exotic environments. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 81536f9de..10dae0977 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -128,7 +128,7 @@ pretty_assertions = "1.3.0" [build-dependencies] # TODO: enable parallel mode once MSRV hits 1.61, see discussion in # https://github.com/rust-lang/cc-rs/pull/849 -cc = "1.1.30" +cc = "1.2.13" rayon = "1.7.0" version_check = "0.9.4"