diff --git a/Cargo.lock b/Cargo.lock index 5a1a191..9d3e0f3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2239,9 +2239,9 @@ dependencies = [ [[package]] name = "regex" -version = "1.12.2" +version = "1.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4" +checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276" dependencies = [ "aho-corasick", "memchr", diff --git a/native-libs/regex/Cargo.toml b/native-libs/regex/Cargo.toml index 6a30956..553b280 100644 --- a/native-libs/regex/Cargo.toml +++ b/native-libs/regex/Cargo.toml @@ -11,4 +11,4 @@ crate-type = ["cdylib"] [dependencies] vm-lib = { path = "../../vm-lib" } opcodes-lib = { path = "../../opcodes-lib" } -regex = "1.12.2" +regex = "1.12.3" diff --git a/test-bin/Cargo.toml b/test-bin/Cargo.toml index 786c04f..a95a935 100644 --- a/test-bin/Cargo.toml +++ b/test-bin/Cargo.toml @@ -11,7 +11,7 @@ rayon = "1.11.0" parser-lib = { path = "../parser-lib" } compiler-lib = { path = "../compiler-lib" } vm-lib = { path = "../vm-lib" } -regex = "1.12.2" +regex = "1.12.3" once_cell = "1.21.3" enum-as-inner = "0.7.0"