From dafde9c181fe40a9d4fa76cd63cf3b22177d2602 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 20 Aug 2026 03:37:08 +0000 Subject: [PATCH] build(deps): bump fancy-regex from 0.14.0 to 0.19.0 Bumps [fancy-regex](https://github.com/fancy-regex/fancy-regex) from 0.14.0 to 0.19.0. - [Release notes](https://github.com/fancy-regex/fancy-regex/releases) - [Changelog](https://github.com/fancy-regex/fancy-regex/blob/main/CHANGELOG.md) - [Commits](https://github.com/fancy-regex/fancy-regex/compare/0.14.0...0.19.0) --- updated-dependencies: - dependency-name: fancy-regex dependency-version: 0.19.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- crates/stringcheese-tokenizer-hf/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ac3dc86..6c20fe5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -967,9 +967,9 @@ dependencies = [ [[package]] name = "fancy-regex" -version = "0.14.0" +version = "0.19.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e24cb5a94bcae1e5408b0effca5cd7172ea3c5755049c5f3af4cd283a165298" +checksum = "476de73bddf2ef8490aa4ee8f1cf40b430bf1d56c48c22080e5186952cd580e6" dependencies = [ "bit-set", "regex-automata", diff --git a/crates/stringcheese-tokenizer-hf/Cargo.toml b/crates/stringcheese-tokenizer-hf/Cargo.toml index 286815f..934758a 100644 --- a/crates/stringcheese-tokenizer-hf/Cargo.toml +++ b/crates/stringcheese-tokenizer-hf/Cargo.toml @@ -86,7 +86,7 @@ rustc-hash = { version = "2", default-features = false } # `o200k_base` pre-tokenizer pattern verbatim. See # `src/pre_tokenizer.rs` for the full rationale. Only compiled when # `std` is enabled (fancy-regex itself requires the standard library). -fancy-regex = { version = "0.14", default-features = false, features = ["std", "unicode"], optional = true } +fancy-regex = { version = "0.19", default-features = false, features = ["std", "unicode"], optional = true } # JSON parser for the Hugging Face `tokenizer.json` loader (see # `src/hf.rs`). Only compiled when the `hf-tokenizer` feature is on.