build: Add regex dependency for cross-reference parsing
The note_parser module requires regex for extracting "mentioned in" and "closed by" patterns from GitLab system notes. The regex crate provides: - LazyLock-compatible lazy compilation (Regex::new at first use) - Named capture groups for clean field extraction - Efficient iteration over all matches via captures_iter() Version 1.x is the current stable release with good compile times. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
1
Cargo.lock
generated
1
Cargo.lock
generated
@@ -1122,6 +1122,7 @@ dependencies = [
|
||||
"libc",
|
||||
"open",
|
||||
"rand",
|
||||
"regex",
|
||||
"reqwest",
|
||||
"rusqlite",
|
||||
"serde",
|
||||
|
||||
Reference in New Issue
Block a user