From 7276c34c51f23b6f69daafd4d3556f0e50afe9bf Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Tue, 14 Jul 2026 14:54:33 -0700
Subject: [PATCH] chore(deps): bump the rust-minor-patch group across 1
directory with 6 updates (#3658)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Bumps the rust-minor-patch group with 6 updates in the / directory:
| Package | From | To |
| --- | --- | --- |
| [regex](https://github.com/rust-lang/regex) | `1.12.4` | `1.13.0` |
| [bytes](https://github.com/tokio-rs/bytes) | `1.12.0` | `1.12.1` |
| [uuid](https://github.com/uuid-rs/uuid) | `1.23.4` | `1.23.5` |
| [http-body](https://github.com/hyperium/http-body) | `1.0.1` | `1.1.0`
|
| [napi](https://github.com/napi-rs/napi-rs) | `3.10.3` | `3.10.5` |
| [napi-derive](https://github.com/napi-rs/napi-rs) | `3.5.9` | `3.5.10`
|
Updates `regex` from 1.12.4 to 1.13.0
Changelog
Sourced from regex's
changelog.
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.
Commits
926af2e
1.13.0
7d941a9
regex-automata-0.4.15
e358341
api: add regex! macro for lazy compilation
c420333
automata: disable miri on a couple doc tests
b9d2cf7
github: add FUNDING link
0858006
docs: add AI policy for contributors
468fc64
automata: reject dense DFA start states that are match states
- See full diff in compare
view
Updates `bytes` from 1.12.0 to 1.12.1
Release notes
Sourced from bytes's
releases.
Bytes v1.12.1
1.12.1 (July 8th, 2026)
Fixed
- Properly handle when
Box::new panics (#837)
Changelog
Sourced from bytes's
changelog.
1.12.1 (July 8th, 2026)
Fixed
- Properly handle when
Box::new panics (#837)
Commits
Updates `uuid` from 1.23.4 to 1.23.5
Release notes
Sourced from uuid's
releases.
v1.23.5
What's Changed
New Contributors
Full Changelog: https://github.com/uuid-rs/uuid/compare/v1.23.4...v1.23.5
Commits
Updates `http-body` from 1.0.1 to 1.1.0
Commits
Updates `napi` from 3.10.3 to 3.10.5
Release notes
Sourced from napi's
releases.
napi-v3.10.5
Fixed
- (napi) release FunctionRef off the JS thread via the
custom-GC TSFN (#3394)
napi-v3.10.4
Fixed
- (cli) align build and project configuration (#3387)
Other
- (readme) point sponsors image at napi.rs/sponsors.svg (#3379)
Commits
9709883
chore(napi): release v3.10.5 (#3395)
c931c97
fix(napi): release FunctionRef off the JS thread via the custom-GC TSFN
(#3394)
3812aa7
chore: release (#3380)
ce56779
chore(release): publish
b9825c7
fix(derive): defer receiver borrow until argument conversion (#3392)
aa49714
fix(cli): align build and project configuration (#3387)
68cbb8d
chore(deps): update yarn to v4.17.1 (#3385)
3069f44
fix(sys): fall back to libnode.dll for symbol loading on MSVC targets
(#3384)
b015713
fix(cli): validate cross-compilation flags upfront and document them
accurate...
81a35ce
chore(deps): update dependency oxc-parser to ^0.139.0 (#3382)
- Additional commits viewable in compare
view
Updates `napi-derive` from 3.5.9 to 3.5.10
Release notes
Sourced from napi-derive's
releases.
napi-derive-v3.5.10
Other
- updated the following local packages: napi-derive-backend
Commits
3812aa7
chore: release (#3380)
ce56779
chore(release): publish
b9825c7
fix(derive): defer receiver borrow until argument conversion (#3392)
aa49714
fix(cli): align build and project configuration (#3387)
68cbb8d
chore(deps): update yarn to v4.17.1 (#3385)
3069f44
fix(sys): fall back to libnode.dll for symbol loading on MSVC targets
(#3384)
b015713
fix(cli): validate cross-compilation flags upfront and document them
accurate...
81a35ce
chore(deps): update dependency oxc-parser to ^0.139.0 (#3382)
4bff127
docs(readme): point sponsors image at napi.rs/sponsors.svg (#3379)
1ac467e
chore(napi): release v3.10.3 (#3376)
- Additional commits viewable in compare
view
Signed-off-by: dependabot[bot]
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
---
Cargo.lock | 68 +++++++++++++++++++++++++++---------------------------
1 file changed, 34 insertions(+), 34 deletions(-)
diff --git a/Cargo.lock b/Cargo.lock
index 4f03c8a46..c28d8a053 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -666,7 +666,7 @@ dependencies = [
"http 0.2.12",
"http 1.4.2",
"http-body 0.4.6",
- "http-body 1.0.1",
+ "http-body 1.1.0",
"percent-encoding",
"pin-project-lite",
"tracing",
@@ -774,7 +774,7 @@ dependencies = [
"hmac 0.13.0",
"http 0.2.12",
"http 1.4.2",
- "http-body 1.0.1",
+ "http-body 1.1.0",
"lru",
"percent-encoding",
"regex-lite",
@@ -907,7 +907,7 @@ dependencies = [
"crc-fast",
"hex",
"http 1.4.2",
- "http-body 1.0.1",
+ "http-body 1.1.0",
"http-body-util",
"md-5 0.11.0",
"pin-project-lite",
@@ -941,7 +941,7 @@ dependencies = [
"futures-core",
"futures-util",
"http 1.4.2",
- "http-body 1.0.1",
+ "http-body 1.1.0",
"http-body-util",
"percent-encoding",
"pin-project-lite",
@@ -1025,7 +1025,7 @@ dependencies = [
"http 0.2.12",
"http 1.4.2",
"http-body 0.4.6",
- "http-body 1.0.1",
+ "http-body 1.1.0",
"http-body-util",
"pin-project-lite",
"pin-utils",
@@ -1086,7 +1086,7 @@ dependencies = [
"http 0.2.12",
"http 1.4.2",
"http-body 0.4.6",
- "http-body 1.0.1",
+ "http-body 1.1.0",
"http-body-util",
"itoa",
"num-integer",
@@ -1133,7 +1133,7 @@ dependencies = [
"bytes",
"futures-util",
"http 1.4.2",
- "http-body 1.0.1",
+ "http-body 1.1.0",
"http-body-util",
"hyper 1.9.0",
"hyper-util",
@@ -1166,7 +1166,7 @@ dependencies = [
"bytes",
"futures-util",
"http 1.4.2",
- "http-body 1.0.1",
+ "http-body 1.1.0",
"http-body-util",
"mime",
"pin-project-lite",
@@ -1463,9 +1463,9 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
[[package]]
name = "bytes"
-version = "1.12.0"
+version = "1.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8ae3f5d315924270530207e2a68396c3cc547f6dca3fbdca317cfb1a51edb593"
+checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
[[package]]
name = "bytes-utils"
@@ -4065,9 +4065,9 @@ dependencies = [
[[package]]
name = "http-body"
-version = "1.0.1"
+version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
+checksum = "ca2a8f2913ee65f60facd6a5905613afaa448497a0230cc41ce022d93290bc2c"
dependencies = [
"bytes",
"http 1.4.2",
@@ -4082,7 +4082,7 @@ dependencies = [
"bytes",
"futures-core",
"http 1.4.2",
- "http-body 1.0.1",
+ "http-body 1.1.0",
"pin-project-lite",
]
@@ -4149,7 +4149,7 @@ dependencies = [
"futures-core",
"h2 0.4.14",
"http 1.4.2",
- "http-body 1.0.1",
+ "http-body 1.1.0",
"httparse",
"httpdate",
"itoa",
@@ -4215,7 +4215,7 @@ dependencies = [
"futures-channel",
"futures-util",
"http 1.4.2",
- "http-body 1.0.1",
+ "http-body 1.1.0",
"hyper 1.9.0",
"ipnet",
"libc",
@@ -5394,7 +5394,7 @@ dependencies = [
"half",
"hf-hub",
"http 1.4.2",
- "http-body 1.0.1",
+ "http-body 1.1.0",
"lance",
"lance-arrow",
"lance-core",
@@ -6041,9 +6041,9 @@ dependencies = [
[[package]]
name = "napi"
-version = "3.10.3"
+version = "3.10.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0c71997d6f7ad4a756966e452426848ac27d3b37a295302d63afbbcce0270f93"
+checksum = "6826e5ddc15589b2d68c8ad5321c18e85d40488e93e32962f362e572669bccf6"
dependencies = [
"bitflags 2.11.1",
"chrono",
@@ -6066,9 +6066,9 @@ checksum = "c9c366d2c8c60b86fa632df75f745509b52f9128f91a6bad4c796e44abb505e1"
[[package]]
name = "napi-derive"
-version = "3.5.9"
+version = "3.5.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d4ba572deef53e2c386759a8c2014175a62679d74ff83adc205c8bc0e0285727"
+checksum = "b0fe526e81c105d3640516fcde83909dd1afe757c0d7a15af58830b5bc0fb9a1"
dependencies = [
"convert_case",
"ctor 1.0.5",
@@ -6080,9 +6080,9 @@ dependencies = [
[[package]]
name = "napi-derive-backend"
-version = "5.1.1"
+version = "5.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ddd961eb2aa8965e3f29722d754f3a86907eb1984e2fbcbe3fe87b9a02d6bfba"
+checksum = "514281397bcddd9ea9a876c7a21a57bff2374237a000ca9a64ea0211ec1993e2"
dependencies = [
"convert_case",
"proc-macro2",
@@ -6093,9 +6093,9 @@ dependencies = [
[[package]]
name = "napi-sys"
-version = "3.2.2"
+version = "3.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1f5bcdf71abd3a50d00b49c1c2c75251cb3c913777d6139cd37dabc093a5e400"
+checksum = "73e43cf2eb0bd1bf95a43c07c076ebd2da5d1e015a71c3d201faeffffcc0ecac"
dependencies = [
"libloading",
]
@@ -6458,7 +6458,7 @@ dependencies = [
"bytes",
"futures",
"http 1.4.2",
- "http-body 1.0.1",
+ "http-body 1.1.0",
"jiff",
"log",
"md-5 0.11.0",
@@ -8138,9 +8138,9 @@ dependencies = [
[[package]]
name = "regex"
-version = "1.12.4"
+version = "1.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f1292b7759ae1cb9ec195452d1390a074f0cd8541ab7a5a8c31cd6db45d4a6ba"
+checksum = "2a0e75113e14dc5acb068cd0786884f214f1312650a3d36d269f5c4f3cdee8a2"
dependencies = [
"aho-corasick",
"memchr",
@@ -8327,7 +8327,7 @@ dependencies = [
"futures-util",
"h2 0.4.14",
"http 1.4.2",
- "http-body 1.0.1",
+ "http-body 1.1.0",
"http-body-util",
"hyper 1.9.0",
"hyper-rustls 0.27.9",
@@ -8371,7 +8371,7 @@ dependencies = [
"futures-core",
"futures-util",
"http 1.4.2",
- "http-body 1.0.1",
+ "http-body 1.1.0",
"http-body-util",
"hyper 1.9.0",
"hyper-rustls 0.27.9",
@@ -10016,7 +10016,7 @@ dependencies = [
"bytes",
"h2 0.4.14",
"http 1.4.2",
- "http-body 1.0.1",
+ "http-body 1.1.0",
"http-body-util",
"hyper 1.9.0",
"hyper-timeout",
@@ -10072,7 +10072,7 @@ dependencies = [
"bitflags 2.11.1",
"bytes",
"http 1.4.2",
- "http-body 1.0.1",
+ "http-body 1.1.0",
"http-body-util",
"pin-project-lite",
"tower-layer",
@@ -10092,7 +10092,7 @@ dependencies = [
"futures-core",
"futures-util",
"http 1.4.2",
- "http-body 1.0.1",
+ "http-body 1.1.0",
"http-body-util",
"pin-project-lite",
"tokio",
@@ -10380,9 +10380,9 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
[[package]]
name = "uuid"
-version = "1.23.4"
+version = "1.23.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "bf80a72845275afea99e7f2b434723d3bc7e38470fcd1c7ed39a599c73319a53"
+checksum = "ea5fab0d6c3c01ae70085a09cb03d4c7a1d6314e2b3e075392783396d724ca0a"
dependencies = [
"getrandom 0.4.2",
"js-sys",