From 87f36f61ef351fcb2686ee12202bf66a18fba791 Mon Sep 17 00:00:00 2001 From: Paul Iatchenii Date: Wed, 26 Nov 2025 15:54:42 -0800 Subject: [PATCH] update regex crate: 1.11.1 -> 1.12.2 Summary: X-link: https://github.com/facebookexperimental/hermit/pull/54 X-link: https://github.com/facebookexperimental/unigraph/pull/7 X-link: https://github.com/facebookexperimental/rust-shed/pull/66 X-link: https://github.com/facebookincubator/below/pull/8266 X-link: https://github.com/meta-pytorch/monarch/pull/2012 Primarily updating for https://docs.rs/regex/latest/regex/struct.Captures.html#method.get_match to avoid explicit `unwrap()` in production code https://github.com/rust-lang/regex/blob/master/CHANGELOG.md Reviewed By: dtolnay Differential Revision: D87950658 --- signed_source/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/signed_source/Cargo.toml b/signed_source/Cargo.toml index 24a997d9..f43e5c8a 100644 --- a/signed_source/Cargo.toml +++ b/signed_source/Cargo.toml @@ -18,5 +18,5 @@ bstr = { version = "1.10.0", features = ["serde", "std", "unicode"] } hex = { version = "0.4.3", features = ["alloc"] } md-5 = "0.10" once_cell = "1.21" -regex = "1.11.1" +regex = "1.12.2" thiserror = "2.0.12"