Skip to content

chore(deps): Bump the cargo-deps group with 7 updates - #594

Open
dependabot[bot] wants to merge 1 commit into
devfrom
dependabot/cargo/dev/cargo-deps-38a9b6c563
Open

chore(deps): Bump the cargo-deps group with 7 updates#594
dependabot[bot] wants to merge 1 commit into
devfrom
dependabot/cargo/dev/cargo-deps-38a9b6c563

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 4, 2026

Copy link
Copy Markdown
Contributor

Bumps the cargo-deps group with 7 updates:

Package From To
regex 1.12.3 1.13.1
aes-gcm 0.11.0 0.11.1
jaq-core 3.1.0 3.1.1
fastembed 6.0.0 6.0.2
argon2 0.5.3 0.6.0
jaq-std 3.0.2 3.0.3
jaq-json 2.0.2 2.0.3

Updates regex from 1.12.3 to 1.13.1

Changelog

Sourced from regex's changelog.

1.13.1 (2026-07-15)

This is a release that fixes a bug where incorrect regex match offsets could be reported. Note that this doesn't impact whether a match occurs or not, just where it occurs. The match offsets are still valid for slicing, they just may not refer to the correct leftmost-first match. See #1364 for (many) more details.

Bug fixes:

  • #1354: Fixes previously unsound reverse suffix and inner optimizations.

1.13.0 (2026-07-09)

This release includes a new API, a regex! macro, for lazy compilation of a regex from a string literal. If you use regexes a lot, it's likely you've already written one exactly like it. The new macro can be used like this:

use regex::regex;
fn is_match(line: &str) -> bool {
// The regex will be compiled approximately once and reused automatically.
// This avoids the footgun of using Regex::new here, which would
// guarantee that it would be compiled every time this routine is called.
// This would likely make this routine much slower than it needs to be.
regex!(r"bar|baz").is_match(line)
}
let hay = "
path/to/foo:54:Blue Harvest
path/to/bar:90:Something, Something, Something, Dark Side
path/to/baz:3:It's a Trap!
";
let matches = hay.lines().filter(|line| is_match(line)).count();
assert_eq!(matches, 2);

Improvements:

  • #709: Add a new regex! macro for efficient and automatic reuse of a compiled regex.

1.12.4 (2026-06-09)

This release includes a performance optimization for compilation of regexes

... (truncated)

Commits
  • 2b52759 1.13.1, redux
  • 40e9823 1.13.1
  • 75fcb96 changelog: 1.13.1
  • 64ad0b6 automata: fix bug in reverse suffix/inner optimization
  • fa91c31 automata: fix a bug caught by Codex review
  • 30390ec automata: formatting tweaks
  • 821a8eb automata: refactor reverse suffix/inner search slightly
  • 10afd70 automata: expose the extracted literals for inner literal extraction
  • 8c34f41 automata: avoid reverse suffix optimization for non-leftmost-first
  • 5524f02 test: add regression tests for failed reverse suffix/inner optimizations
  • Additional commits viewable in compare view

Updates aes-gcm from 0.11.0 to 0.11.1

Commits

Updates jaq-core from 3.1.0 to 3.1.1

Release notes

Sourced from jaq-core's releases.

3.1.1

This release features a new man page that is now generated by jaq itself. Apart from demonstrating jaq's XHTML processing capabilities, this serves to lift jaq's build dependency on Pandoc (01mf02/jaq#442). To quote @​alerque, jaq's Arch Linux package maintainer: "For any other project I'd say this was an absurd way to work around not wanting to use a standard tool. I guess for this project to dog food itself is ... chaotic genius?" This comment alone was nearly worth the endeavour.

Furthermore, this release makes it possible to disable a few dependencies when using jaq via its API (#448, thanks to @​kleinesfilmroellchen!), and handles broken pipes more gracefully 01mf02/jaq#445.

New Contributors

Full Changelog: 01mf02/jaq@v3.1.0...v3.1.1

Commits
  • c866e70 Update version numbers.
  • d6d7b0e Update dependencies.
  • 56f21d3 Merge pull request #456 from 01mf02/hide-tests
  • f3125af Add missing comma.
  • 63deaa8 Add link to documentation.
  • 2eeccf0 Merge pull request #458 from 01mf02/escape-errors
  • f26fd2f Escape errors on playground and handle colors correctly again.
  • d5ffa6d Merge pull request #445 from 01mf02/broken-pipe
  • 0855d95 Remove --run-tests from list of documented flags.
  • fc907af Document.
  • Additional commits viewable in compare view

Updates fastembed from 6.0.0 to 6.0.2

Release notes

Sourced from fastembed's releases.

v6.0.2

6.0.2 (2026-08-27)

🧹 Chores

v6.0.1

6.0.1 (2026-08-23)

🧹 Chores

Commits
  • 48815b9 chore(release): 6.0.2 [skip ci]
  • 397e8d0 chore: Miscellaneous fixes and improvements (#284)
  • cece46e chore(release): 6.0.1 [skip ci]
  • 8aeca82 chore: Expose ORT placement controls for user-defined text models (#280)
  • See full diff in compare view

Updates argon2 from 0.5.3 to 0.6.0

Commits
  • b1e0ad6 argon2 v0.6.0 (#931)
  • c0d2aca argon2: bump blake2 to v0.11 (#929)
  • d9c628b Cargo.lock: bump dependencies (#930)
  • 0b31c1c Cargo.toml: use password-hash crate release (#920)
  • 420cbc9 build(deps): bump rust-lang/crates-io-auth-action from 1.0.4 to 1.0.5 (#912)
  • 3a88540 build(deps): bump actions/checkout from 6 to 7 (#913)
  • 90b974f build(deps): bump the all-deps group with 5 updates (#914)
  • 82c688f build(deps): bump the all-deps group across 1 directory with 18 updates (#911)
  • b2cef17 build(deps): bump the all-deps group with 6 updates (#902)
  • 2c16e5a build(deps): bump the all-deps group with 7 updates (#901)
  • Additional commits viewable in compare view

Updates jaq-std from 3.0.2 to 3.0.3

Commits

Updates jaq-json from 2.0.2 to 2.0.3

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the cargo-deps group with 7 updates:

| Package | From | To |
| --- | --- | --- |
| [regex](https://github.com/rust-lang/regex) | `1.12.3` | `1.13.1` |
| [aes-gcm](https://github.com/RustCrypto/AEADs) | `0.11.0` | `0.11.1` |
| [jaq-core](https://github.com/01mf02/jaq) | `3.1.0` | `3.1.1` |
| [fastembed](https://github.com/Anush008/fastembed-rs) | `6.0.0` | `6.0.2` |
| [argon2](https://github.com/RustCrypto/password-hashes) | `0.5.3` | `0.6.0` |
| [jaq-std](https://github.com/01mf02/jaq) | `3.0.2` | `3.0.3` |
| [jaq-json](https://github.com/01mf02/jaq) | `2.0.2` | `2.0.3` |


Updates `regex` from 1.12.3 to 1.13.1
- [Release notes](https://github.com/rust-lang/regex/releases)
- [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md)
- [Commits](rust-lang/regex@1.12.3...1.13.1)

Updates `aes-gcm` from 0.11.0 to 0.11.1
- [Commits](RustCrypto/AEADs@aes-gcm-v0.11.0...aes-gcm-v0.11.1)

Updates `jaq-core` from 3.1.0 to 3.1.1
- [Release notes](https://github.com/01mf02/jaq/releases)
- [Commits](01mf02/jaq@v3.1.0...v3.1.1)

Updates `fastembed` from 6.0.0 to 6.0.2
- [Release notes](https://github.com/Anush008/fastembed-rs/releases)
- [Commits](Anush008/fastembed-rs@v6.0.0...v6.0.2)

Updates `argon2` from 0.5.3 to 0.6.0
- [Commits](RustCrypto/password-hashes@argon2-v0.5.3...argon2-v0.6.0)

Updates `jaq-std` from 3.0.2 to 3.0.3
- [Release notes](https://github.com/01mf02/jaq/releases)
- [Commits](https://github.com/01mf02/jaq/commits)

Updates `jaq-json` from 2.0.2 to 2.0.3
- [Release notes](https://github.com/01mf02/jaq/releases)
- [Commits](https://github.com/01mf02/jaq/commits)

---
updated-dependencies:
- dependency-name: regex
  dependency-version: 1.13.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-deps
- dependency-name: aes-gcm
  dependency-version: 0.11.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: jaq-core
  dependency-version: 3.1.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: fastembed
  dependency-version: 6.0.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: argon2
  dependency-version: 0.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-deps
- dependency-name: jaq-std
  dependency-version: 3.0.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: jaq-json
  dependency-version: 2.0.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Sep 4, 2026
@vercel

vercel Bot commented Sep 4, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated
overslash Ready Ready Preview Sep 4, 2026 8:07pm UTC

Request Review

@github-actions

github-actions Bot commented Sep 4, 2026

Copy link
Copy Markdown
Contributor

Code diff size

+0 / −0 across 0 files (net +0)

No production source files changed.

Source files under src/ only (.cjs, .go, .js, .jsx, .mjs, .py, .rs, .svelte, .ts, .tsx); test files and inline #[cfg(test)] modules excluded. 3 other changed files not counted.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file rust Pull requests that update rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants