Skip to content

chore(deps): Bump the rust-dependencies group across 1 directory with 21 updates - #31

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot-cargo-rust-dependencies-6c8d0c6da3
Open

chore(deps): Bump the rust-dependencies group across 1 directory with 21 updates#31
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot-cargo-rust-dependencies-6c8d0c6da3

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the rust-dependencies group with 17 updates in the / directory:

Package From To
bindgen 0.72.1 0.73.1
cc 1.2.60 1.4.5
num-bigint 0.4.6 0.5.1
aho-corasick 1.1.4 1.1.5
autocfg 1.5.0 1.5.1
bitflags 2.11.1 2.13.1
clang-sys 1.8.1 1.9.1
glob 0.3.3 0.3.4
libc 0.2.185 0.2.189
log 0.4.29 0.4.34
memchr 2.8.0 2.8.3
num-integer 0.1.46 0.1.47
proc-macro2 1.0.106 1.0.107
quote 1.0.45 1.0.47
regex 1.12.3 1.13.1
rustc-hash 2.1.2 2.1.3
syn 2.0.117 2.0.119

Updates bindgen from 0.72.1 to 0.73.1

Changelog

Sourced from bindgen's changelog.

0.73.1 (2026-09-05)

Added

Changed

  • Widened acceptable prettyplease / syn dependency versions (#3447).

Removed

Fixed

Security

0.73.0 (2026-09-05)

Added

  • Add Debug, Clone and Eq traits to ParseCallbacks info types (#3233).
  • Include the source location in discovery ParseCallbacks (#3244).
  • Report constants and variables in ParseCallbacks::new_item_found (#3249).
  • Allow adding custom attributes to extern function blocks (#3257).
  • Support new-type-alias constants (#3288, #3390).
  • Support nested flexible array members (#3306).
  • Add support for custom per-field attributes (#3307).
  • Add const-generic bitfield accessors for compile-time optimization (#3325, #3374).
  • Allow renaming struct and union fields (#3358).
  • Add a libcpp feature to link libclang against libc++ (#3375).
  • Prebuilt binaries for aarch64 Linux (#3217).

Changed

  • Guarantee opaque type layout across all architectures (#3280).
  • Use NonNull for C++ references (#3292).
  • Bindings::write now takes impl Write instead of Box<dyn Write> (#3317, #3324).
  • Optimize bitfield unit get/set with byte-wise operations (#3325).
  • Emit const __BindgenUnionField accessors and comply with Rust 2024 unsafe_op_in_unsafe_fn (#3337).
  • Generate a doc comment pointing at the aliased type when a type alias is hidden (#3122).
  • dyngen: convert the library path to OsStr before opening it (#3315).
  • Return a NoHeadersProvided error instead of generating empty bindings when no input headers are provided (#3391).
  • Bump the MSRV to 1.71 (#3401).
  • Bump syn to v3 (#3401) and shlex to v2 (#3380).

Removed

  • Removed support for generating code for rustc versions < 1.51, along with the corresponding RustTarget constants (#3281).
  • Removed the dependency on itertools (#3408).

Fixed

  • Fix a typo in the handling of --rustified-non-exhaustive-enums (#3266).
  • Apply the same mangling rule to C and C-unwind function types (#3156).
  • Fix alignment of bitfields in some edge cases (#3247).
  • Fix typedefs inside constified modules (#3284).
  • Fix generation of f32 NAN, INFINITY and NEG_INFINITY constants (#3300).
  • Allow constant expressions that don't fit in i64 (#3301).
  • Deduplicate derive traits added by the add_derives callback (#3296).

... (truncated)

Commits
  • 66a1e2a chore: Release
  • f531ae3 build(deps): Widen range for syn.
  • d73cb7a build(deps): update rust crates
  • 6d276db chore: Release
  • 8afb6a2 Don't derive or implement traits for aliases to c_void
  • e12371f Remove needless by_ref calls
  • a213781 chore(cargo): remove deprecated package authors field
  • 7a6db4b build(deps): update rust crates
  • 5bceb09 build(deps): bump bitflags from 2.9.1 to 2.13.1
  • ab7df34 Do not insert dummy fields into bitfields in cases where this would
  • Additional commits viewable in compare view

Updates cc from 1.2.60 to 1.4.5

Release notes

Sourced from cc's releases.

cc-v1.4.5

Fixed

  • probe flag support without OUT_DIR via tempfile (#1875)

Other

  • simplify conditional logic using then method (#1860)

Fixed

  • Probe flag support without OUT_DIR via tempfile, so flag_if_supported no longer silently drops flags outside Cargo build scripts (#1875)

cc-v1.4.4

Fixed

  • honour Build::env overrides in Android llvm-ar probe (#1868)
  • honour Build::env overrides in flag support and compiler family detection probes (#1866)

cc-v1.4.3

Other

  • Update MSRV to 1.65 (#1834)
  • Regenerate target info (#1848)

cc-v1.4.2

Fixed

  • Infer NEON, not VFPv4, from neon in the target name (#1843)
  • do not emit -mno-omit-leaf-frame-pointer if unsupported (#1845)

cc-v1.4.1

Fixed

  • Fix -Cforce-frame-pointers's corresponding CFLAGS (#1814)
  • Fix parsing of thumbv7a-vex-v5 (#1840)

Other

  • Regenerate target info (#1839)
  • Add aarch64_be to prefix_for_target (#1835)
  • Use lp64d ABI for Managarm riscv64 (#1829)
  • Make cc work on Motor OS (#1822)
  • Update edition to 2021 (#1811)
  • Update MSRV to 1.64 (#1808)

cc-v1.4.0

Added

  • support trim paths with clang-cl.exe (#1799)

... (truncated)

Changelog

Sourced from cc's changelog.

1.4.5 - 2026-09-04

Fixed

  • probe flag support without OUT_DIR via tempfile (#1875)

Other

  • simplify conditional logic using then method (#1860)

Fixed

  • Probe flag support without OUT_DIR via tempfile, so flag_if_supported no longer silently drops flags outside Cargo build scripts (#1875)

1.4.4 - 2026-08-21

Fixed

  • honour Build::env overrides in Android llvm-ar probe (#1868)
  • honour Build::env overrides in flag support and compiler family detection probes (#1866)

1.4.3 - 2026-08-14

Other

  • Update MSRV to 1.65 (#1834)
  • Regenerate target info (#1848)

1.4.2 - 2026-08-08

Fixed

  • Infer NEON, not VFPv4, from neon in the target name (#1843)
  • do not emit -mno-omit-leaf-frame-pointer if unsupported (#1845)

1.4.1 - 2026-08-07

Fixed

  • Fix -Cforce-frame-pointers's corresponding CFLAGS (#1814)
  • Fix parsing of thumbv7a-vex-v5 (#1840)

Other

  • Regenerate target info (#1839)
  • Add aarch64_be to prefix_for_target (#1835)
  • Use lp64d ABI for Managarm riscv64 (#1829)
  • Make cc work on Motor OS (#1822)
  • Update edition to 2021 (#1811)
  • Update MSRV to 1.64 (#1808)

... (truncated)

Commits

Updates num-bigint from 0.4.6 to 0.5.1

Changelog

Sourced from num-bigint's changelog.

Release 0.5.1 (2026-07-04)

Contributors: @​cuviper

Release 0.5.0 (2026-07-02)

  • Upgrade to rand v0.10 and/or v0.9, and split rand_core.
    • The former rand feature is now split into multiple features, rand_0_9, rand_core_0_9, rand_0_10, and rand_core_0_10, depending on the version and feature set you need.
    • The RandBigInt extension trait is now split into BigRng09 and BigRng010 for each version.
    • The gen_* methods are deprecated in favor of new random_* methods.
    • This is also a value-breaking release, as rand defines it.

Contributors: @​bionicles, @​cuviper, @​divergentdave

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
  • 33c59ba Merge pull request #348 from cuviper/bz-alg2-step3b
  • 38b68f6 Release 0.5.1
  • f4a43f5 Fix the missing part of the Burnikel-Ziegler algorithm
  • ebfd89a Add failing tests for a bug in B-Z division
  • 0ab95df Merge pull request #338 from cuviper/rand-0.10
  • 33d6998 Release 0.5.0
  • 84d05b7 Clean up manifests of ci crates
  • f8daf56 Allow clippy::duplicate_mod where intended
  • 022310a Rearrange the rand features to support both 0.9 and 0.10
  • 537a036 ci: use the fallback resolver for deps
  • Additional commits viewable in compare view

Updates aho-corasick from 1.1.4 to 1.1.5

Commits
  • 5178060 1.1.5
  • b68c8d5 api: check for overflow in Match::offset too
  • c821786 build(deps): bump actions/checkout in the actions group (#171)
  • 8209bb9 Hash-pin all actions, drop persisted credentials (#170)
  • 0f3f5da api: document a couple panicking preconditions
  • e88e1fc benchmarks: bump dependencies
  • 88e4966 ci: use older version of log on pinned build
  • See full diff in compare view

Updates autocfg from 1.5.0 to 1.5.1

Commits

Updates bitflags from 2.11.1 to 2.13.1

Release notes

Sourced from bitflags's releases.

2.13.1

What's Changed

New Contributors

Full Changelog: bitflags/bitflags@2.13.0...2.13.1

2.13.0

What's Changed

Full Changelog: bitflags/bitflags@2.12.1...2.13.0

2.12.1

What's Changed

Full Changelog: bitflags/bitflags@2.12.0...2.12.1

2.12.0

Yanked

This release has been yanked because the #[flag_name] processing noticeably increases macro recursion, hitting the default limit in cases that are already close to it.

What's Changed

Full Changelog: bitflags/bitflags@2.11.1...2.12.0

Changelog

Sourced from bitflags's changelog.

2.13.1

What's Changed

New Contributors

Full Changelog: bitflags/bitflags@2.13.0...2.13.1

2.13.0

What's Changed

Full Changelog: bitflags/bitflags@2.12.1...2.13.0

2.12.1

What's Changed

Full Changelog: bitflags/bitflags@2.12.0...2.12.1

2.12.0

Yanked

This release has been yanked because the #[flag_name] processing noticeably increases macro recursion, hitting the default limit in cases that are already close to it.

What's Changed

Full Changelog: bitflags/bitflags@2.11.1...2.12.0

Commits
  • f92a292 Merge pull request #493 from bitflags/cargo/2.13.1
  • c1271c5 prepare for 2.13.1 release
  • e077c4a Merge pull request #492 from bolshoytoster/main
  • 75d1be4 Bless compile fail stderr
  • 7813d71 Support the MSRV
  • d8f8234 Remove unused variable warning with empty bitflags
  • 2e27d6a Fix const _ = !0;
  • dd8beda Fix Self in flags
  • dbc0ce1 Lower the LLVM IR output of the generated output
  • 9253889 prepare for 2.13.0 release
  • Additional commits viewable in compare view

Updates clang-sys from 1.8.1 to 1.9.1

Release notes

Sourced from clang-sys's releases.

v1.9.1

Added

  • Added support for clang 19.0.x
  • Added support for clang 20.0.x
  • Added rewriter API.

Changed

  • Search for libraries in LIBRARY_PATH in addition to LD_LIBRARY_PATH.

Fixed

  • Reverted executable search that caused header search path failure on macOS.
  • Improved Visual Studio search paths.
  • Improved support for Cygwin.

v1.9.0 [YANKED]

Changed

  • Added --link-static flag when listing static libraries to link to

v1.8.2 [YANKED]

Changed

  • Improved Clang::find to first check directories related to the runtime-loaded libclang instance (if any)

Fixed

  • Fixed linking to libclang on Windows with MSYS2
  • Fixed Clang::find to support both the -target and --target arguments when using target-prefixed clang binaries
Changelog

Sourced from clang-sys's changelog.

[1.9.1] - 2026-06-29

Added

  • Added support for clang 19.0.x
  • Added support for clang 20.0.x
  • Added rewriter API.

Changed

  • Search for libraries in LIBRARY_PATH in addition to LD_LIBRARY_PATH.

Fixed

  • Reverted executable search that caused header search path failure on macOS.
  • Improved Visual Studio search paths.
  • Improved support for Cygwin.

[1.9.0] - 2024-09-24 [YANKED]

Changed

  • Added --link-static flag when listing static libraries to link to

[1.8.2] - 2024-05-29 [YANKED]

Fixed

  • Fixed linking to libclang on Windows with MSYS2
  • Fixed Clang::find to support both the -target and --target arguments when using target-prefixed clang binaries
Commits

Updates either from 1.15.0 to 1.18.0

Changelog

Sourced from either's changelog.

  • 1.18.0 - 2026-08-20

    • Add trait impls akin to Itertools::partition_map, by @​cuviper (#144)
      • Extend<Either<L, R>> for (A, B)
      • FromIterator<Either<L, R>> for (A, B)
  • 1.17.0 - 2026-07-24

    • Add implementations for all std::fmt traits, by @​msrd0 (#141)
  • 1.16.0 - 2026-05-20

Commits

Updates find-msvc-tools from 0.1.9 to 0.1.12

Release notes

Sourced from find-msvc-tools's releases.

find-msvc-tools-v0.1.12

Other

  • simplify conditional logic using then method (#1860)

find-msvc-tools-v0.1.11

Other

  • Update MSRV to 1.65 (#1834)

find-msvc-tools-v0.1.10

Other

  • Update edition to 2021 (#1811)
  • Update MSRV to 1.64 (#1808)
Commits

Updates glob from 0.3.3 to 0.3.4

Release notes

Sourced from glob's releases.

v0.3.4

  • Cache filename for sorting in fill_todo (#181)
  • Replace into_error method with impl Into (#179)
  • Replace tempdir with tempfile (#176)
  • Set the edition to 2021 (#188)
Changelog

Sourced from glob's changelog.

0.3.4 - 2026-07-21

  • Cache filename for sorting in fill_todo (#181)
  • Replace into_error method with impl Into (#179)
  • Replace tempdir with tempfile (#176)
  • Set the edition to 2021 (#188)
Commits
  • cfa2a58 chore: release v0.3.4
  • 8a903ef Set the edition to 2021
  • 1f75324 Bump actions/checkout from 6 to 7
  • 7df5575 ci: Bump ubuntu-24.04 to ubuntu-26.04
  • e476c2a ci: Replace macos-13 and macos-15 with macos-26-intel and macos-26
  • 0dc6566 ci: Get MSRV directly from crate metadata
  • c3c81de ci: Bump MSRV of test dependencies
  • 6bde970 Bump actions/checkout from 5 to 6 (#184)
  • 0639988 Cache filename for sorting in fill_todo (#181)
  • 335da33 Replace into_error method with impl Into (#179)
  • Additional commits viewable in compare view

Updates libc from 0.2.185 to 0.2.189

Release notes

Sourced from libc's releases.

0.2.189

Added

  • Emscripten: Add pthread_sigmask, sigwait, sigwaitinfo, sigtimedwait, faccessat, and pthread_kill (#5270)
  • Linux SPARC: Enable the clone3 syscall (#4980)
  • Solarish: Add CLOCK_PROCESS_CPUTIME_ID and CLOCK_THREAD_CPUTIME_ID (#5274)

Deprecated

  • Deprecate CLONE_INTO_CGROUP and CLONE_CLEAR_SIGHAND. These overflow their types and will be changed to a larger size in the future. (8c6e6710458d)

Fixed

  • Musl riscv32: Rename padding fields to avoid a conflict and fix the build (2499ff0ad993)
  • NuttX: Fix wchar_t definition under Arm (#5245)
  • Windows: Add back link names for time-related symbols (#5300)

0.2.188

Changed

These were removed in 0.2.187 because libc does not actually make Send and Sync guarantees about DIR (or other extern types), but this caused some crates to break. The traits are added back for now to allow time to migrate, but will be removed again in the future; please make sure your crates are not relying on libc::DIR: Send or libc::DIR: Sync.

0.2.187

This release contains a number of improvements related to 64-bit time_t configuration. Of note the existing RUST_LIBC_UNSTABLE_* environment variables have been replaced with configuration options. The new way to use these is:

RUSTFLAGS='--cfg=libc_unstable_musl_v1_2_3' cargo ...
RUSTFLAGS='--cfg=libc_unstable_gnu_time_bits="64"' cargo ...

Being able to set this via RUSTFLAGS makes it easier to only apply configuration to specific targets (and notably, not the host if build scripts are used).

There are two other notable changes:

  • The 32-bit windows-gnu targets now respect libc_unstable_gnu_time_bits

  • uClibc now supports a similar configuration option:

    RUSTFLAGS='--cfg=libc_unstable_uclibc_time64'

... (truncated)

Changelog

Sourced from libc's changelog.

0.2.189 - 2026-07-21

Added

  • Emscripten: Add pthread_sigmask, sigwait, sigwaitinfo, sigtimedwait, faccessat, and pthread_kill (#5270)
  • Linux SPARC: Enable the clone3 syscall (#4980)
  • Solarish: Add CLOCK_PROCESS_CPUTIME_ID and CLOCK_THREAD_CPUTIME_ID (#5274)

Deprecated

  • Deprecate CLONE_INTO_CGROUP and CLONE_CLEAR_SIGHAND. These overflow their types and will be changed to a larger size in the future. (8c6e6710458d)

Fixed

  • Musl riscv32: Rename padding fields to avoid a conflict and fix the build (2499ff0ad993)
  • NuttX: Fix wchar_t definition under Arm (#5245)
  • Windows: Add back link names for time-related symbols (#5300)

0.2.188 - 2026-07-21

Changed

These were removed in 0.2.187 because libc does not actually make Send and Sync guarantees about DIR (or other extern types), but this caused some crates to break. The traits are added back for now to allow time to migrate, but will be removed again in the future; please make sure your crates are not relying on libc::DIR: Send or libc::DIR: Sync.

0.2.187 - 2026-07-20

This release contains a number of improvements related to 64-bit time_t configuration. Of note the existing RUST_LIBC_UNSTABLE_* environment variables have been replaced with configuration options. The new way to use these is:

RUSTFLAGS='--cfg=libc_unstable_musl_v1_2_3' cargo ...
RUSTFLAGS='--cfg=libc_unstable_gnu_time_bits="64"' cargo ...

Being able to set this via RUSTFLAGS makes it easier to only apply configuration to specific targets (and notably, not the host if build scripts are used).

There are two other notable changes:

  • The 32-bit windows-gnu targets now respect libc_unstable_gnu_time_bits
  • uClibc now supports a similar configuration option:

... (truncated)

Commits
  • ef0906e libc: Release 0.2.189
  • 5a79f76 riscv32-musl: Rename padding fields to avoid a conflict
  • 3e51062 psp: Fix overflowing_literals warnings
  • e352fdd emscripten: add pthread_sigmask, sigwait, sigwaitinfo, sigtimedwait, faccessa...
  • 63221b3 macros: Require safe in safe_f! invocations
  • 707ab52 macros: Require unsafe in f! invocations
  • 8e40c94 Enable clone3() syscall on sparc-linux and sparc64-linux
  • 8427909 windows: Add back link names for time-related symbols
  • b4863fa nuttx: fix wchar_t definition under arm
  • 41c683d nuttx: mirror type definitions
  • Additional commits viewable in compare view

Updates log from 0.4.29 to 0.4.34

Release notes

Sourced from log's releases.

0.4.34

What's Changed

New Contributors

Full Changelog: rust-lang/log@0.4.33...0.4.34

0.4.33

What's Changed

New Contributors

Full Changelog: rust-lang/log@0.4.32...0.4.33

0.4.32

What's Changed

Full Changelog: rust-lang/log@0.4.31...0.4.32

0.4.31

What's Changed

New Contributors

Full Changelog: rust-lang/log@0.4.30...0.4.31

0.4.30

What's Changed

New Contributors

Full Changelog: rust-lang/log@0.4.29...0.4.30

Notable Changes

... (truncated)

Changelog

Sourced from log's changelog.

[0.4.34] - 2026-08-22

What's Changed

New Contributors

Full Changelog: rust-lang/log@0.4.33...0.4.34

[0.4.33] - 2026-06-20

What's Changed

New Contributors

… 21 updates

Bumps the rust-dependencies group with 17 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [bindgen](https://github.com/rust-lang/rust-bindgen) | `0.72.1` | `0.73.1` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.2.60` | `1.4.5` |
| [num-bigint](https://github.com/rust-num/num-bigint) | `0.4.6` | `0.5.1` |
| [aho-corasick](https://github.com/BurntSushi/aho-corasick) | `1.1.4` | `1.1.5` |
| [autocfg](https://github.com/cuviper/autocfg) | `1.5.0` | `1.5.1` |
| [bitflags](https://github.com/bitflags/bitflags) | `2.11.1` | `2.13.1` |
| [clang-sys](https://github.com/KyleMayes/clang-sys) | `1.8.1` | `1.9.1` |
| [glob](https://github.com/rust-lang/glob) | `0.3.3` | `0.3.4` |
| [libc](https://github.com/rust-lang/libc) | `0.2.185` | `0.2.189` |
| [log](https://github.com/rust-lang/log) | `0.4.29` | `0.4.34` |
| [memchr](https://github.com/BurntSushi/memchr) | `2.8.0` | `2.8.3` |
| [num-integer](https://github.com/rust-num/num-integer) | `0.1.46` | `0.1.47` |
| [proc-macro2](https://github.com/dtolnay/proc-macro2) | `1.0.106` | `1.0.107` |
| [quote](https://github.com/dtolnay/quote) | `1.0.45` | `1.0.47` |
| [regex](https://github.com/rust-lang/regex) | `1.12.3` | `1.13.1` |
| [rustc-hash](https://github.com/rust-lang/rustc-hash) | `2.1.2` | `2.1.3` |
| [syn](https://github.com/dtolnay/syn) | `2.0.117` | `2.0.119` |



Updates `bindgen` from 0.72.1 to 0.73.1
- [Release notes](https://github.com/rust-lang/rust-bindgen/releases)
- [Changelog](https://github.com/rust-lang/rust-bindgen/blob/main/CHANGELOG.md)
- [Commits](rust-lang/rust-bindgen@v0.72.1...v0.73.1)

Updates `cc` from 1.2.60 to 1.4.5
- [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.60...cc-v1.4.5)

Updates `num-bigint` from 0.4.6 to 0.5.1
- [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.5.1)

Updates `aho-corasick` from 1.1.4 to 1.1.5
- [Commits](BurntSushi/aho-corasick@1.1.4...1.1.5)

Updates `autocfg` from 1.5.0 to 1.5.1
- [Commits](cuviper/autocfg@1.5.0...1.5.1)

Updates `bitflags` from 2.11.1 to 2.13.1
- [Release notes](https://github.com/bitflags/bitflags/releases)
- [Changelog](https://github.com/bitflags/bitflags/blob/main/CHANGELOG.md)
- [Commits](bitflags/bitflags@2.11.1...2.13.1)

Updates `clang-sys` from 1.8.1 to 1.9.1
- [Release notes](https://github.com/KyleMayes/clang-sys/releases)
- [Changelog](https://github.com/KyleMayes/clang-sys/blob/master/CHANGELOG.md)
- [Commits](KyleMayes/clang-sys@v1.8.1...v1.9.1)

Updates `either` from 1.15.0 to 1.18.0
- [Changelog](https://github.com/rayon-rs/either/blob/main/RELEASES.md)
- [Commits](rayon-rs/either@1.15.0...1.18.0)

Updates `find-msvc-tools` from 0.1.9 to 0.1.12
- [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@find-msvc-tools-v0.1.9...find-msvc-tools-v0.1.12)

Updates `glob` from 0.3.3 to 0.3.4
- [Release notes](https://github.com/rust-lang/glob/releases)
- [Changelog](https://github.com/rust-lang/glob/blob/master/CHANGELOG.md)
- [Commits](rust-lang/glob@v0.3.3...v0.3.4)

Updates `libc` from 0.2.185 to 0.2.189
- [Release notes](https://github.com/rust-lang/libc/releases)
- [Changelog](https://github.com/rust-lang/libc/blob/0.2.189/CHANGELOG.md)
- [Commits](rust-lang/libc@0.2.185...0.2.189)

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

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

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

Updates `proc-macro2` from 1.0.106 to 1.0.107
- [Release notes](https://github.com/dtolnay/proc-macro2/releases)
- [Commits](dtolnay/proc-macro2@1.0.106...1.0.107)

Updates `quote` from 1.0.45 to 1.0.47
- [Release notes](https://github.com/dtolnay/quote/releases)
- [Commits](dtolnay/quote@1.0.45...1.0.47)

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 `regex-automata` from 0.4.14 to 0.4.18
- [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.18)

Updates `regex-syntax` from 0.8.10 to 0.8.11
- [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-syntax-0.8.10...regex-syntax-0.8.11)

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 `syn` from 2.0.117 to 2.0.119
- [Release notes](https://github.com/dtolnay/syn/releases)
- [Commits](dtolnay/syn@2.0.117...2.0.119)

---
updated-dependencies:
- dependency-name: bindgen
  dependency-version: 0.73.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: cc
  dependency-version: 1.4.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: num-bigint
  dependency-version: 0.5.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: aho-corasick
  dependency-version: 1.1.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: autocfg
  dependency-version: 1.5.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: bitflags
  dependency-version: 2.13.1
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: clang-sys
  dependency-version: 1.9.1
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: either
  dependency-version: 1.18.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: find-msvc-tools
  dependency-version: 0.1.12
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: glob
  dependency-version: 0.3.4
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: libc
  dependency-version: 0.2.189
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: log
  dependency-version: 0.4.34
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: memchr
  dependency-version: 2.8.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: num-integer
  dependency-version: 0.1.47
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: proc-macro2
  dependency-version: 1.0.107
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: quote
  dependency-version: 1.0.47
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: regex
  dependency-version: 1.13.1
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: regex-automata
  dependency-version: 0.4.18
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: regex-syntax
  dependency-version: 0.8.11
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: rustc-hash
  dependency-version: 2.1.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: syn
  dependency-version: 2.0.119
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
...

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 9, 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