From 5a6712c943f9f08673ef96b24cf8bba0b70509ae Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Oct 2025 08:06:56 +0000 Subject: [PATCH] build(deps): bump regex from 1.12.1 to 1.12.2 Bumps [regex](https://github.com/rust-lang/regex) from 1.12.1 to 1.12.2. - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.12.1...1.12.2) --- updated-dependencies: - dependency-name: regex dependency-version: 1.12.2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- crates/sbv2_core/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8c3a12d..a3a6035 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2158,9 +2158,9 @@ dependencies = [ [[package]] name = "regex" -version = "1.12.1" +version = "1.12.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4a52d8d02cacdb176ef4678de6c052efb4b3da14b78e4db683a4252762be5433" +checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4" dependencies = [ "aho-corasick", "memchr", diff --git a/crates/sbv2_core/Cargo.toml b/crates/sbv2_core/Cargo.toml index 6ac7464..0212e63 100644 --- a/crates/sbv2_core/Cargo.toml +++ b/crates/sbv2_core/Cargo.toml @@ -20,7 +20,7 @@ npyz = { version = "0.8.4", optional = true } num_cpus = "1.17.0" once_cell.workspace = true ort = { git = "https://github.com/pykeio/ort.git", version = "2.0.0-rc.9", optional = true } -regex = "1.12.1" +regex = "1.12.2" serde = { version = "1.0.228", features = ["derive"] } serde_json = "1.0.145" tar = "0.4.41"