Skip to content

Commit 724c807

Browse files
chore(deps): lock file maintenance rust crates (#621)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | | | lockFileMaintenance | All locks refreshed | | [fancy-regex](https://redirect.github.com/fancy-regex/fancy-regex) | dependencies | minor | `^0.14.0` -> `^0.15.0` | | [fancy-regex](https://redirect.github.com/fancy-regex/fancy-regex) | dev-dependencies | minor | `^0.14.0` -> `^0.15.0` | | [serde_json](https://redirect.github.com/serde-rs/json) | dependencies | patch | `1.0.140` -> `1.0.141` | 🔧 This Pull Request updates lock files to use the latest dependency versions. --- ### Release Notes <details> <summary>fancy-regex/fancy-regex (fancy-regex)</summary> ### [`v0.15.0`](https://redirect.github.com/fancy-regex/fancy-regex/blob/HEAD/CHANGELOG.md#0150---2025-07-06) [Compare Source](https://redirect.github.com/fancy-regex/fancy-regex/compare/0.14.0...0.15.0) ##### Added - Support `\Z` - anchor to the end of the text before any trailing newlines. ([#&#8203;148](https://redirect.github.com/fancy-regex/fancy-regex/issues/148)) - Support `\O` - any character including newlines. ([#&#8203;158](https://redirect.github.com/fancy-regex/fancy-regex/issues/158)) - The parser can now parse subroutine calls and relative backreferences (but execution is still unsupported). This is preparation for future work. Some new error variants have been added for features which can be parsed but are still otherwise unsupported. - Backreferences can now be case insensitive. ([#&#8203;160](https://redirect.github.com/fancy-regex/fancy-regex/issues/160)) - `RegexBuilder`: Add options for `multi_line`, `ignore_whitespace`, `dot_matches_new_line` ([#&#8203;165](https://redirect.github.com/fancy-regex/fancy-regex/issues/165)) ##### Fixed - Fix infinite loop when backtracking limit is hit ([#&#8203;153](https://redirect.github.com/fancy-regex/fancy-regex/issues/153)) - Fix `RegexBuilder.case_insensitive` not always applying when it should. ([#&#8203;163](https://redirect.github.com/fancy-regex/fancy-regex/issues/163)) - The `toy` example has had various bugfixes, and unit tests added. ([#&#8203;152](https://redirect.github.com/fancy-regex/fancy-regex/issues/152), [#&#8203;159](https://redirect.github.com/fancy-regex/fancy-regex/issues/159)) </details> <details> <summary>serde-rs/json (serde_json)</summary> ### [`v1.0.141`](https://redirect.github.com/serde-rs/json/releases/tag/v1.0.141) [Compare Source](https://redirect.github.com/serde-rs/json/compare/v1.0.140...v1.0.141) - Optimize string escaping during serialization ([#&#8203;1273](https://redirect.github.com/serde-rs/json/issues/1273), thanks [@&#8203;conradludgate](https://redirect.github.com/conradludgate)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - "before 9am on monday" in timezone Asia/Shanghai, Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/oxc-project/oxc-resolver). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4yMy4yIiwidXBkYXRlZEluVmVyIjoiNDEuMjMuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 9d55f5e commit 724c807

File tree

3 files changed

+59
-25
lines changed

3 files changed

+59
-25
lines changed

Cargo.lock

Lines changed: 57 additions & 23 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ document-features = { version = "0.2.11", optional = true }
9797
[dev-dependencies]
9898
criterion2 = { version = "3.0.1", default-features = false }
9999
dirs = { version = "6.0.0" }
100-
fancy-regex = { version = "^0.14.0", default-features = false, features = ["std"] }
100+
fancy-regex = { version = "^0.15.0", default-features = false, features = ["std"] }
101101
normalize-path = { version = "0.2.1" }
102102
pico-args = "0.5.0"
103103
rayon = { version = "1.10.0" }

napi/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ doctest = false
2222
[dependencies]
2323
oxc_resolver = { workspace = true }
2424

25-
fancy-regex = { version = "^0.14.0", default-features = false, features = ["std"] }
25+
fancy-regex = { version = "^0.15.0", default-features = false, features = ["std"] }
2626
napi = { version = "3.0.0", default-features = false, features = ["napi3", "serde-json"] }
2727
napi-derive = { version = "3.0.0" }
2828
tracing-subscriber = { version = "0.3.19", optional = true, default-features = false, features = ["std", "fmt"] } # Omit the `regex` feature

0 commit comments

Comments
 (0)