Skip to content

chore(deps): bump the rust-other group across 1 directory with 31 updates#563

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/rust-other-713f725617
Open

chore(deps): bump the rust-other group across 1 directory with 31 updates#563
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/rust-other-713f725617

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 15, 2026

Copy link
Copy Markdown
Contributor

Bumps the rust-other group with 28 updates in the / directory:

Package From To
bytes 1.12.0 1.12.1
gungraun 0.19.3 0.19.4
http-body-util 0.1.3 0.1.4
regex 1.12.4 1.13.0
rustls 0.23.41 0.23.42
time 0.3.51 0.3.53
uuid 1.23.4 1.23.5
rand 0.10.1 0.10.2
cc 1.2.65 1.2.67
crossbeam-utils 0.8.21 0.8.22
http-body 1.0.1 1.1.0
humantime 2.3.0 2.4.0
jobserver 0.1.34 0.1.35
memchr 2.8.2 2.8.3
mio 1.2.1 1.2.2
num-bigint 0.4.6 0.4.8
rapidhash 4.4.2 4.5.1
regex-automata 0.4.14 0.4.15
rustc-demangle 0.1.27 0.1.28
rustc-hash 2.1.2 2.1.3
rustls-pki-types 1.14.1 1.15.0
rustversion 1.0.22 1.0.23
simd-adler32 0.3.9 0.3.10
simd_cesu8 1.1.1 1.2.0
socket2 0.6.4 0.6.5
syn 2.0.118 2.0.119
zerocopy 0.8.52 0.8.54
zmij 1.0.21 1.0.23

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 gungraun from 0.19.3 to 0.19.4

Release notes

Sourced from gungraun's releases.

v0.19.4

[0.19.4] - 2026-07-10

Fixed

  • (#684): Default regression limits were applied if only regression fail-fast was set in Callgrind::fail_fast, Dhat::fail_fast, and Cachegrind::fail_fast.
  • (#688): Update dependencies. Fixes crossbeam-epoch RUSTSEC-2026-0204. Fixes quick-xml (transitive dependency via inferno), RUSTSEC-2026-0194 and RUSTSEC-2026-0195.

#684: gungraun/gungraun#684 #688: gungraun/gungraun#688

Full Changelog: gungraun/gungraun@v0.19.3...v0.19.4

Changelog

Sourced from gungraun's changelog.

[0.19.4] - 2026-07-10

Fixed

  • (#684): Default regression limits were applied if only regression fail-fast was set in Callgrind::fail_fast, Dhat::fail_fast, and Cachegrind::fail_fast.
  • (#688): Update dependencies. Fixes crossbeam-epoch RUSTSEC-2026-0204. Fixes quick-xml (transitive dependency via inferno), RUSTSEC-2026-0194 and RUSTSEC-2026-0195.

#684: gungraun/gungraun#684 #688: gungraun/gungraun#688

Commits
  • f086839 Merge pull request #689 from gamma0987/prepare-release
  • 9fde6cb docs(readme): Make headline work on github and crates.io
  • 199edd8 Bump version 0.19.3 -> 0.19.4
  • 675793f Update CHANGELOG
  • 470f4fb Merge pull request #688 from gamma0987/update-deps
  • b433c12 tests(system): Update drd valgrind suppressions from new rust release
  • 8207153 tests(system): Try running system tests with avx2 enabled
  • b9e9bdf chore(deps): Fix crossbeam-epoch RUSTSEC-2026-0204. Update dependencies
  • c9c88a8 lint: Fix clippy lints from new rust stable version
  • 2c8356d Merge pull request #686 from gungraun/renovate/cc-1.x-lockfile
  • Additional commits viewable in compare view

Updates http-body-util from 0.1.3 to 0.1.4

Release notes

Sourced from http-body-util's releases.

http-body-util-v0.1.4

What's Changed

  • Add Fused body combinator that always returns None once completed.
  • Add BodyExt::into_stream() to convert a body into a Stream.
  • Add Full::into_inner() to get the full Buf.
  • Add InspectFrame and InspectErr combinators.
Commits

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 rustls from 0.23.41 to 0.23.42

Commits
  • 411fb02 Bump version to 0.23.42
  • aff9845 implement rfc 9149 ticket_request extension
  • 8bd3d1b server: add max_tls13_tickets configuration
  • 4cce222 Address new std_instead_of_core in nightly
  • d3ffdc1 Address new std_instead_of_core in nightly
  • 75d1b7a Take semver-compatible dependency updates
  • See full diff in compare view

Updates time from 0.3.51 to 0.3.53

Release notes

Sourced from time's releases.

v0.3.53

See the changelog for details.

v0.3.52

See the changelog for details.

Changelog

Sourced from time's changelog.

0.3.53 [2026-07-01]

There are no publicly-facing changes in this release. It solely works around the cookie crate relying on an implementation detail of time that was never part of the public API (and thus subject to semver guarantees). The internal API has been reverted to the extent necessary for cookie to compile. This measure is temporary; the internal change will be re-applied in an yet-to-be-determined future release.

0.3.52 [2026-06-30]

Fixed

  • Subsecond values in the time! macro are parsed using the textual representation, ensuring accuracy. Previously, they were parsed using the floating point representation, which could result in a loss of precision and even invalid values.
  • The date! macro could previously create an invalid value that would then panic at compile time. The macro now emits a proper error instead.
  • When parsing an invalid format description, an edge case would inadvertently panic. This now returns an error as intended.

Added

  • Support default values when parsing
Commits
  • 0ae2f84 v0.3.53 release
  • cea8c96 Avoid issue with cookie crate temporarily
  • 55e1f2b Require private type to properly seal traits
  • 7cf4780 v0.3.52 release
  • 0e5b04f Fix trusted publishing workflow
  • 6e4140a Support default values when parsing
  • 10ac36a Add more doctests to Timestamp
  • 6b0d468 Restore lexer depth on the unclosed-bracket error path
  • 0abc06d Add trusted publishing
  • 43cf0c0 Preferentially group shards by target
  • Additional commits viewable in compare view

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: uuid-rs/uuid@v1.23.4...v1.23.5

Commits

Updates rand from 0.10.1 to 0.10.2

Changelog

Sourced from rand's changelog.

[0.10.2] — 2026-07-02

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)

#1769: rust-random/rand#1769 #1790: rust-random/rand#1790 #1791: rust-random/rand#1791

Commits

Updates cc from 1.2.65 to 1.2.67

Release notes

Sourced from cc's releases.

cc-v1.2.67

Other

  • Fix clippy warning (#1788)
  • Regenerate target info (#1785)
  • Add support for aarch64-unknown-linux-pauthtest target (#1713)
  • Fix nightly compilation error (#1783)

cc-v1.2.66

Other

  • Fix target parsing for aarch64-unknown-linux-pauthtest (#1779)
  • Support new QNX targets (#1775)
  • Add kache to the supported compiler wrappers (#1770)
Changelog

Sourced from cc's changelog.

1.2.67 - 2026-07-11

Other

  • Fix clippy warning (#1788)
  • Regenerate target info (#1785)
  • Add support for aarch64-unknown-linux-pauthtest target (#1713)
  • Fix nightly compilation error (#1783)

1.2.66 - 2026-07-05

Other

  • Fix target parsing for aarch64-unknown-linux-pauthtest (#1779)
  • Support new QNX targets (#1775)
  • Add kache to the supported compiler wrappers (#1770)
Commits

Updates crossbeam-utils from 0.8.21 to 0.8.22

Release notes

Sourced from crossbeam-utils's releases.

crossbeam-utils 0.8.22

  • Make AtomicCell::{as_ptr,into_inner} const. (#1237)
  • Make CachePadded repr(C). (#1270)
  • Optimize WaitGroup. (#1195)
Commits
  • 9b56303 Prepare for the next release
  • a078b17 ci: Sync config with main
  • 508c29d Remove crossbeam-skiplist which is not published from this branch from worksp...
  • 6a20e57 tests: Fix mismatched_lifetime_syntaxes
  • c2d674f epoch: Fix rustdoc::invalid_rust_codeblocks
  • bd6563e Update no_atomic.rs
  • d3e1e36 Make CachePadded<T> have C repr to allow casting to and from T (#1270)
  • c0c466e channel: Use non-poison Mutex
  • 8b3940f Add missing word to docs (#1208)
  • df6eec0 docs: Link select_biased! from select! macro (#1202)
  • Additional commits viewable in compare view

Updates gungraun-runner from 0.19.3 to 0.19.4

Release notes

Sourced from gungraun-runner's releases.

v0.19.4

[0.19.4] - 2026-07-10

Fixed

  • (#684): Default regression limits were applied if only regression fail-fast was set in Callgrind::fail_fast, Dhat::fail_fast, and Cachegrind::fail_fast.
  • (#688): Update dependencies. Fixes crossbeam-epoch RUSTSEC-2026-0204. Fixes quick-xml (transitive dependency via inferno), RUSTSEC-2026-0194 and RUSTSEC-2026-0195.

#684: gungraun/gungraun#684 #688: gungraun/gungraun#688

Full Changelog: gungraun/gungraun@v0.19.3...v0.19.4

Changelog

Sourced from gungraun-runner's changelog.

[0.19.4] - 2026-07-10

Fixed

  • (#684): Default regression limits were applied if only regression fail-fast was set in Callgrind::fail_fast, Dhat::fail_fast, and Cachegrind::fail_fast.
  • (#688): Update dependencies. Fixes crossbeam-epoch RUSTSEC-2026-0204. Fixes quick-xml (transitive dependency via inferno), RUSTSEC-2026-0194 and RUSTSEC-2026-0195.

#684: gungraun/gungraun#684 #688: gungraun/gungraun#688

Commits
  • f086839 Merge pull request #689 from gamma0987/prepare-release
  • 9fde6cb docs(readme): Make headline work on github and crates.io
  • 199edd8 Bump version 0.19.3 -> 0.19.4
  • 675793f Update CHANGELOG
  • 470f4fb Merge pull request #688 from gamma0987/update-deps
  • b433c12 tests(system): Update drd valgrind suppressions from new rust release
  • 8207153 tests(system): Try running system tests with avx2 enabled
  • b9e9bdf chore(deps): Fix crossbeam-epoch RUSTSEC-2026-0204. Update dependencies
  • c9c88a8 lint: Fix clippy lints from new rust stable version
  • 2c8356d Merge pull request #686 from gungraun/renovate/cc-1.x-lockfile
  • Additional commits viewable in compare view

Updates http-body from 1.0.1 to 1.1.0

Commits

Updates humantime from 2.3.0 to 2.4.0

Release notes

Sourced from humantime's releases.

2.4.0

What's Changed

Commits
  • fc09281 chore: prepare release 2.4.0
  • 8a022cc feat: allow creating Duration in const context
  • 27a4f77 Explicitly set rust-version to 1.60
  • acc3c19 ci: upgrade to actions/checkout v7
  • 3acf96b ci: fix workflow formatting
  • See full diff in compare view

Updates jobserver from 0.1.34 to 0.1.35

Commits
  • 85ba04e chore: bump to 0.1.35
  • 89f2303 Merge pull request #122 from weihanglo/nix-0.31.3
  • c539363 chore: bump to nix@0.31.3
  • 6753b4d Merge pull request #120 from kpcyrd/getrandom-0.4
  • 922f23b chore: bump MSRV to 1.85
  • c28a13d Merge pull request #121 from weihanglo/ci-native-make
  • d51b4bb ci: use native GNU Make instead of building from source
  • 2195928 test: exercise both jobserver styles in make-as-server tests
  • 18d138c Update getrandom to 0.4
  • See full diff in compare view

Updates memchr from 2.8.2 to 2.8.3

Commits
  • 5fdb40c 2.8.3
  • 922c7b5 memchr: let compiler know that indexes returned by memchr fns are in bounds
  • e21e9fb arch: add unsafe to internal routines
  • 581faf0 rebar: update memchr version
  • See full diff in compare view

Updates mio from 1.2.1 to 1.2.2

Changelog

Sourced from mio's changelog.

1.2.2

Commits
  • 50ee78d Release 1.2.2
  • e7f35de Document Solaris is supported
  • 8e067d2 Poll all fd events returned by port_getn in one zero-timeout poll call
  • f6a559a Remove dead POLLRDHUP handling and avoid registering unsupported priority
  • f0249a8 Add Solaris event ports selector
  • 2e267a5 Support NuttX (#1966)
  • See full diff in compare view

Updates num-bigint from 0.4.6 to 0.4.8

Changelog

Sourced from num-bigint's changelog.

Release 0.4.8 (2026-07-04)

Contributors: @​cuviper

Release 0.4.7 (2026-07-02)

Contributors: @​cp289, @​cuviper, @​hkalbasi, @​mikem8891, @​pRizz, @​tyilo, @​xtqqczze

Commits
  • 6533005 Merge pull request #349 from cuviper/bz-alg2-step3b-0.4.x
  • bb2a48b Release 0.4.9
  • 304c801 Fix the missing part of the Burnikel-Ziegler algorithm
  • bc275d2 Add failing tests for a bug in B-Z division
  • 1d3365b Merge pull request #346 from cuviper/release-0.4.7
  • 73a7205 Release 0.4.7
  • 6e9fe33 Merge pull request #335 from cp289/sign_docs
  • 7f492e0 Apply suggestions
  • c74ae51 Merge pull request #342 from xtqqczze/readme-alternatives
  • 5904161 Merge pull request #339 from mikem8891/master
  • Additional commits viewable in compare view

Updates rapidhash from 4.4.2 to 4.5.1

Release notes

Sourced from rapidhash's releases.

v4.5.1

What's Changed

Full Changelog: hoxxep/rapidhash@v4.5.0...v4.5.1

v4.5.0

Deprecations

  • The rand feature has been deprecated in favor of getrandom_04 and getrandom_03.
  • The rng feature has been deprecated in favor of the rapidrand crate.

Additions

  • getrandom_04 feature: opt-in seeding of the hasher seeds and secrets from OS/platform entropy via the getrandom crate, without requiring std nor rand crate. This replaces the rand feature and enables true HashDoS resistance on targets with no ambient entropy or ASLR:
    • wasm32-wasip1/wasm32-wasip2: enabling the feature is sufficient; entropy comes from the WASI host.
    • wasm32-unknown-unknown (browser/node): additionally requires getrandom's wasm_js backend, enabled by the top-level binary. Building without the backend is a compile error rather than a silent fallback to deterministic seeding.
    • Embedded/no_std targets with a hardware RNG: register a getrandom custom backend. On targets without atomic pointer support (e.g. thumbv6m-none-eabi), each RandomState draws a fresh random seed per instance, restoring minimal HashDoS resistance where there previously was none.
  • getrandom_03 feature: the same as the getrandom_04 feature, but using getrandom v0.3 to preserve the rapidhash MSRV 1.71.

Fixes

  • RandomState no longer produces duplicate seeds across threads whose stacks are recycled by the OS. Each thread's seed counter is now initialized from a global thread counter mixed with the process-wide random seed, instead of relying on the (frequently re-used) stack address alone.
  • Better randomness handling and documentation for wasm targets, no_std targets, and targets without atomics.

What's Changed

Full Changelog: hoxxep/rapidhash@v4.4.2...v4.5.0

Changelog

Sourced from rapidhash's changelog.

4.5.1 (20260704)

Fixes

  • Fixed an edge case where targets with std but no atomics could see the same seed repeatedly on RandomState on new threads. (hoxxep/rapidhash#102)
  • Fixed struct size tests for Debian packaging. (hoxxep/rapidhash#90)

4.5.0 (20260703)

Deprecations

  • The rand feature has been deprecated in favor of getrandom_04 and getrandom_03.
  • The rng feature has been deprecated in favor of the rapidrand crate.

Additions

  • getrandom_04 feature: opt-in seeding of the hasher seeds and secrets from OS/platform entropy via the getrandom crate, without requiring std nor rand crate. This replaces the rand feature and enables true HashDoS resistance on targets with no ambient entropy or ASLR:
    • wasm32-wasip1/wasm32-wasip2: enabling the feature is sufficient; entropy comes from the WASI host.
    • wasm32-unknown-unknown (browser/node): additionally requires getrandom's wasm_js backend, enabled by the top-level binary. Building without the backend is a compile error rather than a silent fallback to deterministic seeding.
    • Embedded/no_std targets with a hardware RNG: register a getrandom custom backend. On targets without atomic pointer support (e.g. thumbv6m-none-eabi), each RandomState draws a fresh random seed per instance, restoring minimal HashDoS resistance where there previously was none.
  • getrandom_03 feature: the same as the getrandom_04 feature, but using getrandom v0.3 to preserve the rapidhash MSRV 1.71.

Fixes

  • RandomState no longer produces duplicate seeds across threads whose stacks are recycled by the OS. Each thread's seed counter is now initialized from a global thread counter mixed with the process-wide random seed, instead of relying on the (frequently re-used) stack address alone.
  • Better randomness handling and documentation for wasm targets, no_std targets, and targets without atomics.
Commits
  • 7eb3402 Prepare v4.5.1 release
  • 4e78be6 Merge pull request #102 from hoxxep/thread-seeding-fix
  • 8fcaf14 Fix branch for std but no-atomic targets
  • 798dc07 Merge pull request #101 from hoxxep/s390x-size-test-fix
  • ed41656 Struct size tests for a range of targets
  • c82999a Fix size tests for s390x architectures with 8-byte alignment for u128
  • 9fe63fe Merge pull request #100 from hoxxep/deprecate-rng
  • 1755d27 Small cargo clippy cleanup
  • e3db1f9 Simplify rapidrand initialization in tests
  • 57854a9 Prepare the v4.5.0 release
  • Additional commits viewable in compare view

Updates regex-automata from 0.4.14 to 0.4.15

Commits
  • 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
  • 7b96fdc 1.12.4
  • 7b89cf0 deps: update to regex-syntax 0.8.11
  • 1401679 regex-syntax-0.8.11
  • d709000 changelog: 1.12.4
  • Additional commits viewable in compare view

Updates rustc-demangle from 0.1.27 to 0.1.28

Release notes

Sourced from rustc-demangle's releases.

rustc-demangle-v0.1.28

Other

  • Implement splat demangling
  • Fix a typo in early-recursion-limit
Changelog

Sourced from rustc-demangle's changelog.

0.1.28 - 2026-07-08

Other

  • Implement splat demangling
  • Fix a typo in early-recursion-limit
Commits
  • 1fd8a3e chore: release
  • 53ea128 Merge pull request #90 from teor2345/splat-mangling
  • 5bae81a Implement splat demangling
  • 4324dde Fix a typo in early-recursion-limit
  • ca5202e Merge pull request #88 from rust-lang/release-plz-2026-01-15T15-09-27Z
  • See full diff in compare view

Updates rustc-hash from 2.1.2 to 2.1.3

Changelog

Sourced from rustc-hash's changelog.

2.1.3

Commits

Updates rustls-pki-types from 1.14.1 to 1.15.0

Release notes

Sou...

Description has been truncated

…ates

Bumps the rust-other group with 28 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [bytes](https://github.com/tokio-rs/bytes) | `1.12.0` | `1.12.1` |
| [gungraun](https://github.com/gungraun/gungraun) | `0.19.3` | `0.19.4` |
| [http-body-util](https://github.com/hyperium/http-body) | `0.1.3` | `0.1.4` |
| [regex](https://github.com/rust-lang/regex) | `1.12.4` | `1.13.0` |
| [rustls](https://github.com/rustls/rustls) | `0.23.41` | `0.23.42` |
| [time](https://github.com/time-rs/time) | `0.3.51` | `0.3.53` |
| [uuid](https://github.com/uuid-rs/uuid) | `1.23.4` | `1.23.5` |
| [rand](https://github.com/rust-random/rand) | `0.10.1` | `0.10.2` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.2.65` | `1.2.67` |
| [crossbeam-utils](https://github.com/crossbeam-rs/crossbeam) | `0.8.21` | `0.8.22` |
| [http-body](https://github.com/hyperium/http-body) | `1.0.1` | `1.1.0` |
| [humantime](https://github.com/chronotope/humantime) | `2.3.0` | `2.4.0` |
| [jobserver](https://github.com/rust-lang/jobserver-rs) | `0.1.34` | `0.1.35` |
| [memchr](https://github.com/BurntSushi/memchr) | `2.8.2` | `2.8.3` |
| [mio](https://github.com/tokio-rs/mio) | `1.2.1` | `1.2.2` |
| [num-bigint](https://github.com/rust-num/num-bigint) | `0.4.6` | `0.4.8` |
| [rapidhash](https://github.com/hoxxep/rapidhash) | `4.4.2` | `4.5.1` |
| [regex-automata](https://github.com/rust-lang/regex) | `0.4.14` | `0.4.15` |
| [rustc-demangle](https://github.com/rust-lang/rustc-demangle) | `0.1.27` | `0.1.28` |
| [rustc-hash](https://github.com/rust-lang/rustc-hash) | `2.1.2` | `2.1.3` |
| [rustls-pki-types](https://github.com/rustls/pki-types) | `1.14.1` | `1.15.0` |
| [rustversion](https://github.com/dtolnay/rustversion) | `1.0.22` | `1.0.23` |
| [simd-adler32](https://github.com/mcountryman/simd-adler32) | `0.3.9` | `0.3.10` |
| [simd_cesu8](https://github.com/seancroach/simd_cesu8) | `1.1.1` | `1.2.0` |
| [socket2](https://github.com/rust-lang/socket2) | `0.6.4` | `0.6.5` |
| [syn](https://github.com/dtolnay/syn) | `2.0.118` | `2.0.119` |
| [zerocopy](https://github.com/google/zerocopy) | `0.8.52` | `0.8.54` |
| [zmij](https://github.com/dtolnay/zmij) | `1.0.21` | `1.0.23` |



Updates `bytes` from 1.12.0 to 1.12.1
- [Release notes](https://github.com/tokio-rs/bytes/releases)
- [Changelog](https://github.com/tokio-rs/bytes/blob/master/CHANGELOG.md)
- [Commits](tokio-rs/bytes@v1.12.0...v1.12.1)

Updates `gungraun` from 0.19.3 to 0.19.4
- [Release notes](https://github.com/gungraun/gungraun/releases)
- [Changelog](https://github.com/gungraun/gungraun/blob/main/CHANGELOG.md)
- [Commits](gungraun/gungraun@v0.19.3...v0.19.4)

Updates `http-body-util` from 0.1.3 to 0.1.4
- [Release notes](https://github.com/hyperium/http-body/releases)
- [Commits](hyperium/http-body@http-body-util-v0.1.3...http-body-util-v0.1.4)

Updates `regex` from 1.12.4 to 1.13.0
- [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.4...1.13.0)

Updates `rustls` from 0.23.41 to 0.23.42
- [Release notes](https://github.com/rustls/rustls/releases)
- [Changelog](https://github.com/rustls/rustls/blob/main/CHANGELOG.md)
- [Commits](rustls/rustls@v/0.23.41...v/0.23.42)

Updates `time` from 0.3.51 to 0.3.53
- [Release notes](https://github.com/time-rs/time/releases)
- [Changelog](https://github.com/time-rs/time/blob/main/CHANGELOG.md)
- [Commits](time-rs/time@v0.3.51...v0.3.53)

Updates `uuid` from 1.23.4 to 1.23.5
- [Release notes](https://github.com/uuid-rs/uuid/releases)
- [Commits](uuid-rs/uuid@v1.23.4...v1.23.5)

Updates `rand` from 0.10.1 to 0.10.2
- [Release notes](https://github.com/rust-random/rand/releases)
- [Changelog](https://github.com/rust-random/rand/blob/master/CHANGELOG.md)
- [Commits](rust-random/rand@0.10.1...0.10.2)

Updates `cc` from 1.2.65 to 1.2.67
- [Release notes](https://github.com/rust-lang/cc-rs/releases)
- [Changelog](https://github.com/rust-lang/cc-rs/blob/main/CHANGELOG.md)
- [Commits](rust-lang/cc-rs@cc-v1.2.65...cc-v1.2.67)

Updates `crossbeam-utils` from 0.8.21 to 0.8.22
- [Release notes](https://github.com/crossbeam-rs/crossbeam/releases)
- [Changelog](https://github.com/crossbeam-rs/crossbeam/blob/main/CHANGELOG.md)
- [Commits](crossbeam-rs/crossbeam@crossbeam-utils-0.8.21...crossbeam-utils-0.8.22)

Updates `gungraun-runner` from 0.19.3 to 0.19.4
- [Release notes](https://github.com/gungraun/gungraun/releases)
- [Changelog](https://github.com/gungraun/gungraun/blob/main/CHANGELOG.md)
- [Commits](gungraun/gungraun@v0.19.3...v0.19.4)

Updates `http-body` from 1.0.1 to 1.1.0
- [Release notes](https://github.com/hyperium/http-body/releases)
- [Commits](hyperium/http-body@v1.0.1...v1.1.0)

Updates `humantime` from 2.3.0 to 2.4.0
- [Release notes](https://github.com/chronotope/humantime/releases)
- [Commits](chronotope/humantime@v2.3.0...v2.4.0)

Updates `jobserver` from 0.1.34 to 0.1.35
- [Commits](rust-lang/jobserver-rs@0.1.34...0.1.35)

Updates `memchr` from 2.8.2 to 2.8.3
- [Commits](BurntSushi/memchr@2.8.2...2.8.3)

Updates `mio` from 1.2.1 to 1.2.2
- [Release notes](https://github.com/tokio-rs/mio/releases)
- [Changelog](https://github.com/tokio-rs/mio/blob/master/CHANGELOG.md)
- [Commits](tokio-rs/mio@v1.2.1...v1.2.2)

Updates `num-bigint` from 0.4.6 to 0.4.8
- [Changelog](https://github.com/rust-num/num-bigint/blob/main/RELEASES.md)
- [Commits](rust-num/num-bigint@num-bigint-0.4.6...num-bigint-0.4.8)

Updates `rapidhash` from 4.4.2 to 4.5.1
- [Release notes](https://github.com/hoxxep/rapidhash/releases)
- [Changelog](https://github.com/hoxxep/rapidhash/blob/master/CHANGELOG.md)
- [Commits](hoxxep/rapidhash@v4.4.2...v4.5.1)

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

Updates `rustc-demangle` from 0.1.27 to 0.1.28
- [Release notes](https://github.com/rust-lang/rustc-demangle/releases)
- [Changelog](https://github.com/rust-lang/rustc-demangle/blob/main/CHANGELOG.md)
- [Commits](rust-lang/rustc-demangle@rustc-demangle-v0.1.27...rustc-demangle-v0.1.28)

Updates `rustc-hash` from 2.1.2 to 2.1.3
- [Changelog](https://github.com/rust-lang/rustc-hash/blob/main/CHANGELOG.md)
- [Commits](rust-lang/rustc-hash@v2.1.2...v2.1.3)

Updates `rustls-pki-types` from 1.14.1 to 1.15.0
- [Release notes](https://github.com/rustls/pki-types/releases)
- [Commits](rustls/pki-types@v/1.14.1...v/1.15.0)

Updates `rustversion` from 1.0.22 to 1.0.23
- [Release notes](https://github.com/dtolnay/rustversion/releases)
- [Commits](dtolnay/rustversion@1.0.22...1.0.23)

Updates `simd-adler32` from 0.3.9 to 0.3.10
- [Changelog](https://github.com/mcountryman/simd-adler32/blob/main/CHANGELOG.md)
- [Commits](mcountryman/simd-adler32@v0.3.9...v0.3.10)

Updates `simd_cesu8` from 1.1.1 to 1.2.0
- [Release notes](https://github.com/seancroach/simd_cesu8/releases)
- [Commits](seancroach/simd_cesu8@v1.1.1...v1.2.0)

Updates `socket2` from 0.6.4 to 0.6.5
- [Release notes](https://github.com/rust-lang/socket2/releases)
- [Changelog](https://github.com/rust-lang/socket2/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rust-lang/socket2/commits/v0.6.5)

Updates `syn` from 2.0.118 to 2.0.119
- [Release notes](https://github.com/dtolnay/syn/releases)
- [Commits](dtolnay/syn@2.0.118...2.0.119)

Updates `time-macros` from 0.2.30 to 0.2.31
- [Release notes](https://github.com/time-rs/time/releases)
- [Changelog](https://github.com/time-rs/time/blob/main/CHANGELOG.md)
- [Commits](https://github.com/time-rs/time/commits)

Updates `zerocopy` from 0.8.52 to 0.8.54
- [Release notes](https://github.com/google/zerocopy/releases)
- [Commits](google/zerocopy@v0.8.52...v0.8.54)

Updates `zerocopy-derive` from 0.8.52 to 0.8.54
- [Release notes](https://github.com/google/zerocopy/releases)
- [Commits](google/zerocopy@v0.8.52...v0.8.54)

Updates `zmij` from 1.0.21 to 1.0.23
- [Release notes](https://github.com/dtolnay/zmij/releases)
- [Commits](dtolnay/zmij@1.0.21...1.0.23)

---
updated-dependencies:
- dependency-name: bytes
  dependency-version: 1.12.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-other
- dependency-name: gungraun
  dependency-version: 0.19.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-other
- dependency-name: http-body-util
  dependency-version: 0.1.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-other
- dependency-name: regex
  dependency-version: 1.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-other
- dependency-name: rustls
  dependency-version: 0.23.42
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-other
- dependency-name: time
  dependency-version: 0.3.53
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-other
- dependency-name: uuid
  dependency-version: 1.23.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-other
- dependency-name: rand
  dependency-version: 0.10.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-other
- dependency-name: cc
  dependency-version: 1.2.67
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-other
- dependency-name: crossbeam-utils
  dependency-version: 0.8.22
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-other
- dependency-name: gungraun-runner
  dependency-version: 0.19.4
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-other
- dependency-name: http-body
  dependency-version: 1.1.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: rust-other
- dependency-name: humantime
  dependency-version: 2.4.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: rust-other
- dependency-name: jobserver
  dependency-version: 0.1.35
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-other
- dependency-name: memchr
  dependency-version: 2.8.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-other
- dependency-name: mio
  dependency-version: 1.2.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-other
- dependency-name: num-bigint
  dependency-version: 0.4.8
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-other
- dependency-name: rapidhash
  dependency-version: 4.5.1
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: rust-other
- dependency-name: regex-automata
  dependency-version: 0.4.15
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-other
- dependency-name: rustc-demangle
  dependency-version: 0.1.28
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-other
- dependency-name: rustc-hash
  dependency-version: 2.1.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-other
- dependency-name: rustls-pki-types
  dependency-version: 1.15.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: rust-other
- dependency-name: rustversion
  dependency-version: 1.0.23
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-other
- dependency-name: simd-adler32
  dependency-version: 0.3.10
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-other
- dependency-name: simd_cesu8
  dependency-version: 1.2.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: rust-other
- dependency-name: socket2
  dependency-version: 0.6.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-other
- dependency-name: syn
  dependency-version: 2.0.119
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-other
- dependency-name: time-macros
  dependency-version: 0.2.31
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-other
- dependency-name: zerocopy
  dependency-version: 0.8.54
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-other
- dependency-name: zerocopy-derive
  dependency-version: 0.8.54
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-other
- dependency-name: zmij
  dependency-version: 1.0.23
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-other
...

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 Jul 15, 2026
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