From 5517c9943a5a7d66b0ea75e95667831ceb46dd09 Mon Sep 17 00:00:00 2001 From: Ben Beasley Date: Thu, 6 Nov 2025 12:43:32 +0000 Subject: [PATCH] Require ignore 0.4.24 in `Cargo.toml` (#21292) ## Summary Since 4c4ddc8c29e, ruff uses the `WalkBuilder::current_dir` API [introduced in `ignore` version 0.4.24](https://diff.rs/ignore/0.4.23/0.4.24/src%2Fwalk.rs), so it should explicitly depend on this minimum version. See also https://github.com/astral-sh/ruff/pull/20979. ## Test Plan Source inspection verifies this version is necessary; no additional testing is required since `Cargo.lock` already has (at least) this version. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index cd9e05d6b8..525366136c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -103,7 +103,7 @@ hashbrown = { version = "0.16.0", default-features = false, features = [ "inline-more", ] } heck = "0.5.0" -ignore = { version = "0.4.22" } +ignore = { version = "0.4.24" } imara-diff = { version = "0.1.5" } imperative = { version = "1.0.4" } indexmap = { version = "2.6.0" }