Skip to content

chore(deps): update all non-major dependencies#587

Merged
dotboris merged 3 commits into
mainfrom
renovate/all-minor-patch
Jul 21, 2026
Merged

chore(deps): update all non-major dependencies#587
dotboris merged 3 commits into
mainfrom
renovate/all-minor-patch

Conversation

@renovate

@renovate renovate Bot commented Jul 11, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Type Update Change Pending
clap_complete build-dependencies patch 4.6.54.6.7
console dependencies patch 0.16.30.16.4
rand (source) dev-dependencies patch 0.10.10.10.2
regex dependencies minor 1.12.41.13.0 1.13.1
toml dependencies patch 1.1.2+spec-1.1.01.1.3

Release Notes

clap-rs/clap (clap_complete)

v4.6.7

Compare Source

v4.6.6

Compare Source

console-rs/console (console)

v0.16.4

Compare Source

What's Changed

rust-random/rand (rand)

v0.10.2

Compare Source

Fixes
  • Fix possible memory safety violation due to deserialization of UniformChar from bad source (#​1790)
Changes
  • Document required output order of fn partial_shuffle and apply #[must_use] (#​1769)
  • Avoid usage of unsafe in contexts where non-local memory corruption could invalidate contract (#​1791)
rust-lang/regex (regex)

v1.13.0

Compare Source

===================
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.
toml-rs/toml (toml)

v1.1.3

Compare Source


Configuration

📅 Schedule: (in timezone America/Toronto)

  • Branch creation
    • "before 5am on saturday"
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 23cfd94 to 24ccd28 Compare July 16, 2026 15:56
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 24ccd28 to a5251b8 Compare July 21, 2026 16:11
@dotboris
dotboris merged commit 8a7e91b into main Jul 21, 2026
18 checks passed
@dotboris
dotboris deleted the renovate/all-minor-patch branch July 21, 2026 20:45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant