From 3266ed7641cc92f5cae79b1befeb6bee7c96242e Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Tue, 21 Jul 2026 11:20:59 -0500
Subject: [PATCH] deps: bump the cargo-minor-patch group with 10 updates
(#2284)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Bumps the cargo-minor-patch group with 10 updates:
| Package | From | To |
| --- | --- | --- |
| [clap](https://github.com/clap-rs/clap) | `4.6.1` | `4.6.2` |
| [aws-sigv4](https://github.com/smithy-lang/smithy-rs) | `1.4.5` |
`1.5.1` |
| [aws-config](https://github.com/smithy-lang/smithy-rs) | `1.8.18` |
`1.9.0` |
| [regex](https://github.com/rust-lang/regex) | `1.12.4` | `1.13.1` |
| [toml](https://github.com/toml-rs/toml) | `1.1.2+spec-1.1.0` |
`1.1.3+spec-1.1.0` |
| [fastembed](https://github.com/Anush008/fastembed-rs) | `5.17.2` |
`5.17.3` |
| [uuid](https://github.com/uuid-rs/uuid) | `1.23.4` | `1.24.0` |
| [http-body-util](https://github.com/hyperium/http-body) | `0.1.3` |
`0.1.4` |
| [lru](https://github.com/jeromefroe/lru-rs) | `0.18.0` | `0.18.1` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.2.66` | `1.2.67` |
Updates `clap` from 4.6.1 to 4.6.2
Sourced from clap's
releases. Sourced from clap's
changelog. Sourced from regex's
changelog. 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: This release includes a new API, a fn is_match(line: &str) -> bool { let hay = " let matches = hay.lines().filter(|line| is_match(line)).count();Release notes
v4.6.2
[4.6.2] - 2026-07-15
Fixes
alias when there is only oneChangelog
[4.6.2] - 2026-07-15
Fixes
alias when there is only oneCommits
Updates `aws-sigv4` from 1.4.5 to 1.5.1
Commits
Updates `aws-config` from 1.8.18 to 1.9.0
Commits
Updates `regex` from 1.12.4 to 1.13.1
Changelog
1.13.1 (2026-07-15)
1.13.0 (2026-07-09)
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;
// 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)
}
path/to/foo:54:Blue Harvest
path/to/bar:90:Something, Something, Something, Dark Side
path/to/baz:3:It's a Trap!
";
assert_eq!(matches, 2);
Improvements:
regex! macro for efficient and automatic reuse of
a compiled regex.2b52759
1.13.1, redux40e9823
1.13.175fcb96
changelog: 1.13.164ad0b6
automata: fix bug in reverse suffix/inner optimizationfa91c31
automata: fix a bug caught by Codex review30390ec
automata: formatting tweaks821a8eb
automata: refactor reverse suffix/inner search slightly10afd70
automata: expose the extracted literals for inner literal
extraction8c34f41
automata: avoid reverse suffix optimization for non-leftmost-first5524f02
test: add regression tests for failed reverse suffix/inner
optimizationseb25160
chore: Releasef36fb52
docs: Update changelog3adbbb7
fix(writer): Don't overflow (#1189)fb0c1b3
fix(writer): Don't overflow5e70a70
test(writer): Add overflow test771a975
chore: Upgrade toml-test (#1186)28f6c9c
chore: Upgrade toml-test30d75ca
chore(deps): Update Prek to v0.4.9 (#1185)17efe57
chore(deps): Update Rust Stable to v1.97 (#1184)c9d0d54
style: Make clippy happySourced from fastembed's releases.
v5.17.3
5.17.3 (2026-07-15)
What's Changed
- chore(deps): update candle-core requirement from 0.10.2 to 0.11.0 by
@dependabot[bot] in Anush008/fastembed-rs#270Full Changelog: https://github.com/Anush008/fastembed-rs/compare/v5.17.2...v5.17.3
4e9dc55
chore(release): 5.17.3 [skip ci]3fd10f9
chore(deps): update candle-core requirement from 0.10.2 to 0.11.0 (#270)Sourced from uuid's releases.
v1.24.0
What's Changed
- feat(fmt): support encoding into MaybeUninit buffers by
@weifanglabin uuid-rs/uuid#892- Prepare for 1.24.0 release by
@KodrAusin uuid-rs/uuid#896New Contributors
@weifanglabmade their first contribution in uuid-rs/uuid#892Full Changelog: https://github.com/uuid-rs/uuid/compare/v1.23.5...v1.24.0
v1.23.5
What's Changed
- doc: Fix broken link by
@frostyplanetin uuid-rs/uuid#891- perf: Optimize UUID hex parsing and formatting by
@geeknoidin uuid-rs/uuid#894- Prepare for 1.23.5 release by
@KodrAusin uuid-rs/uuid#895New Contributors
@geeknoidmade their first contribution in uuid-rs/uuid#894Full Changelog: https://github.com/uuid-rs/uuid/compare/v1.23.4...v1.23.5
6a8aeab
Merge pull request #896 from
uuid-rs/cargo/v1.24.0e6db8ec
prepare for 1.24.0 release606f236
Merge pull request #892 from
weifanglab/mainab848db
feat(fmt): support encoding into MaybeUninit buffers5dc6b3d
Merge pull request #895 from
uuid-rs/cargo/v1.23.55a7dfe5
prepare for 1.23.5 release9b4bfc8
Merge pull request #894 from
geeknoid/main5acc5a5
perf: Optimize UUID hex parsing and formatting6fa1a1e
feat(fmt): support encoding into MaybeUninit buffers1e5d867
Merge pull request #891 from
frostyplanet/docSourced from http-body-util's releases.
http-body-util-v0.1.4
What's Changed
- Add
Fusedbody combinator that always returnsNoneonce completed.- Add
BodyExt::into_stream()to convert a body into aStream.- Add
Full::into_inner()to get the fullBuf.- Add
InspectFrameandInspectErrcombinators.
7685047
http-body-util v0.1.43396328
http-body v1.1.02fb78de
chore: bump license year (#170)b16554b
chore(ci): bump checkout to v7c0c53ca
chore(ci): use msrv aware update for msrv job5ed15d2
tests: fix clippy::double_parensc8cb37f
Derive Copy trait to SizeHint struct (#164)915d6d5
feat(util): add InspectErr, InspectFrame
combinators (#161)0fc0a94
docs: fix broken intradoc links (#162)5a849d4
chore: add FUNDING.ymlfa031a0
chore(cc): release v1.2.67 (#1789)842aab1
Bump taiki-e/install-action from 2.81.8 to 2.82.8 (#1786)e2f07d0
Fix clippy warning (#1788)8ced615
Regenerate target info (#1785)2943b52
Add missing todo for deprecated API43ae1bf
Add support for aarch64-unknown-linux-pauthtest target (#1713)a5c584a
Fix nightly compilation error (#1783)