Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 2, 2025

Bumps the all-deps group with 35 updates in the / directory:

Package From To
chrono 0.4.41 0.4.42
clap 4.5.45 4.5.48
getrandom 0.2.16 0.3.2
tempfile 3.21.0 3.23.0
url 2.5.6 2.5.7
uuid 1.18.0 1.18.1
zeroize 1.8.1 1.8.2
anstream 0.6.20 0.6.21
anstyle 1.0.11 1.0.13
anyhow 1.0.99 1.0.100
backtrace 0.3.75 0.3.76
cc 1.2.34 1.2.39
errno 0.3.13 0.3.14
iana-time-zone 0.1.63 0.1.64
indexmap 2.11.0 2.11.4
libc 0.2.175 0.2.176
log 0.4.27 0.4.28
memchr 2.7.5 2.7.6
owo-colors 4.2.2 4.2.3
potential_utf 0.1.2 0.1.3
quote 1.0.40 1.0.41
regex 1.11.1 1.11.2
regex-automata 0.4.9 0.4.11
regex-syntax 0.8.5 0.8.6
rustix 1.0.8 1.1.2
schannel 0.1.27 0.1.28
security-framework-sys 2.14.0 2.15.0
semver 1.0.26 1.0.27
serde_bytes 0.11.17 0.11.19
time 0.3.41 0.3.44
typenum 1.18.0 1.19.0
unicode-ident 1.0.18 1.0.19
winapi-util 0.1.10 0.1.11
windows-core 0.61.2 0.62.1
zerocopy 0.8.26 0.8.27

Updates chrono from 0.4.41 to 0.4.42

Release notes

Sourced from chrono's releases.

0.4.42

What's Changed

Commits
  • f3fd15f Bump version to 0.4.42
  • 5cf5603 strftime: add regression test case
  • a623170 strftime: simplify error handling
  • 36fbfb1 strftime: move specifier handling out of match to reduce rightward drift
  • 7f413c3 strftime: yield None early
  • 9d5dfe1 strftime: outline constants
  • e5f6be7 strftime: move error() method below caller
  • d516c27 strftime: merge impl blocks
  • 0ee2172 strftime: re-order items to keep impls together
  • 757a8b0 Upgrade to windows-bindgen 0.63
  • Additional commits viewable in compare view

Updates clap from 4.5.45 to 4.5.48

Release notes

Sourced from clap's releases.

v4.5.48

[4.5.48] - 2025-09-19

Documentation

  • Add a new CLI Concepts document as another way of framing clap
  • Expand the typed_derive cookbook entry

v4.5.47

[4.5.47] - 2025-09-02

Features

  • Added impl FromArgMatches for ()
  • Added impl Args for ()
  • Added impl Subcommand for ()
  • Added impl FromArgMatches for Infallible
  • Added impl Subcommand for Infallible

Fixes

  • (derive) Update runtime error text to match clap

v4.5.46

[4.5.46] - 2025-08-26

Features

  • Expose StyledStr::push_str
Changelog

Sourced from clap's changelog.

[4.5.48] - 2025-09-19

Documentation

  • Add a new CLI Concepts document as another way of framing clap
  • Expand the typed_derive cookbook entry

[4.5.47] - 2025-09-02

Features

  • Added impl FromArgMatches for ()
  • Added impl Args for ()
  • Added impl Subcommand for ()
  • Added impl FromArgMatches for Infallible
  • Added impl Subcommand for Infallible

Fixes

  • (derive) Update runtime error text to match clap

[4.5.46] - 2025-08-26

Features

  • Expose StyledStr::push_str
Commits
  • c3a1ddc chore: Release
  • 4460ff4 docs: Update changelog
  • 54947a1 Merge pull request #5981 from mernen/fix-bash-clap-complete-space
  • fd3f6d2 fix(complete): Restore nospace in bash
  • 2f6a108 test(complete): Demonstrate current behavior
  • f88be57 style: Ensure consistent newlines
  • f209bce chore: Release
  • f33ff7f docs: Update changelog
  • bf06e6f Merge pull request #5974 from kryvashek/support-clearing-args-matches
  • 5d357ad feat(parser): Added ArgMatches::try_clear_id()
  • Additional commits viewable in compare view

Updates getrandom from 0.2.16 to 0.3.2

Changelog

Sourced from getrandom's changelog.

[0.3.2] - 2025-03-17

Added

  • efi_rng opt-in backend #570
  • linux_raw opt-in backend #572
  • .cargo/config.toml example in the crate-level docs #591
  • getrandom_test_linux_without_fallback configuration flag to test that file fallback is not triggered in the linux_android_with_fallback backend #605
  • Built-in support for *-linux-none targets #618
  • Cygwin support #626

Changed

  • Update wasi dependency to v0.14 #594
  • Add #[inline] attribute to the inner functions #596
  • Update WASI and Emscripten links in the crate-level docs #597
  • Do not use dlsym on MUSL targets in the linux_android_with_fallback backend #602
  • Remove linux_android.rs and use getrandom.rs instead #603
  • Always use RtlGenRandom on Windows targets when compiling with pre-1.78 Rust #610
  • Internal representation of the Error type #614
  • Remove windows-targets dependency and use [raw-dylib] directly #627

Removed

  • Error::INTERNAL_START and Error::CUSTOM_START associated constants #614

#570: rust-random/getrandom#570 #572: rust-random/getrandom#572 #591: rust-random/getrandom#591 #594: rust-random/getrandom#594 #596: rust-random/getrandom#596 #597: rust-random/getrandom#597 #602: rust-random/getrandom#602 #603: rust-random/getrandom#603 #605: rust-random/getrandom#605 #610: rust-random/getrandom#610 #614: rust-random/getrandom#614 #618: rust-random/getrandom#618 #626: rust-random/getrandom#626 #627: rust-random/getrandom#627 [raw-dylib]: https://doc.rust-lang.org/reference/items/external-blocks.html?highlight=link#dylib-versus-raw-dylib

[0.3.1] - 2025-01-28

Fixed

  • Build error on Android #588

#588: rust-random/getrandom#588

[0.3.0] - 2025-01-25

Breaking Changes

... (truncated)

Commits

Updates tempfile from 3.21.0 to 3.23.0

Changelog

Sourced from tempfile's changelog.

3.23.0

  • Remove need for the "nightly" feature to compile with "wasip2".

3.22.0

  • Updated windows-sys requirement to allow version 0.61.x
  • Remove unstable-windows-keep-open-tempfile feature.
Commits
  • fe9f4a3 chore: release v3.23.0 (#381)
  • 006c3fd fix: use std::os::fd instead of std::os::wasi (#380)
  • b0e6309 doc: Update COPYRIGHT link (#377)
  • 2d6fc3f Fix formatting in Builder::disable_cleanup documentation (#375)
  • f720dbe chore: release 3.22.0
  • 55d742c chore: remove deprecated unstable feature flag
  • bc41a0b build(deps): update windows-sys requirement from >=0.52, <0.61 to >=0.52, <0....
  • 3c55387 test: make sure we don't drop tempdirs early (#373)
  • 17bf644 doc(builder): clarify permissions (#372)
  • c7423f1 doc(env): document the alternative to setting the tempdir (#371)
  • Additional commits viewable in compare view

Updates url from 2.5.6 to 2.5.7

Release notes

Sourced from url's releases.

v2.5.7

What's Changed

v.2.5.6

v.2.5.7

New Contributors

Full Changelog: servo/rust-url@v2.5.5...v2.5.7

Commits

Updates uuid from 1.18.0 to 1.18.1

Release notes

Sourced from uuid's releases.

v1.18.1

What's Changed

Full Changelog: uuid-rs/uuid@v1.18.0...v1.18.1

Commits
  • 50d8e79 Merge pull request #842 from uuid-rs/cargo/v1.18.1
  • 7948592 prepare for 1.18.1 release
  • 6d847c7 Merge pull request #841 from uuid-rs/chore/unsafe-cleanup
  • 675cccc re-gate zerocopy behind unstable feature flag
  • 4dd5828 Remove some unsafe; stabilize zerocopy
  • See full diff in compare view

Updates zeroize from 1.8.1 to 1.8.2

Commits

Updates anstream from 0.6.20 to 0.6.21

Commits
  • f7aff1c chore: Release
  • 5a5a5f7 docs: Update changelog
  • 6f6fe80 Merge pull request #275 from epage/inner
  • df887e2 feat(anstream): Provide read-only access to inner stream
  • 4735bcc Merge pull request #274 from epage/update
  • 4ceec1c chore: Update dependencies
  • 08712d9 Merge pull request #273 from rust-cli/renovate/actions-checkout-5.x
  • 9988a6c style: Fix spelling
  • 0d23a06 chore(deps): Update actions/checkout action to v5
  • 14dd743 chore: Release
  • Additional commits viewable in compare view

Updates anstyle from 1.0.11 to 1.0.13

Commits
  • 14dd743 chore: Release
  • 2baaec7 Merge pull request #271 from epage/template
  • 5d7026c chore: Update from _rust template
  • f218f4a docs(docsrs): Update to new doc_cfg feature name
  • 2a2bebb chore: Release
  • 98b7990 docs: Update changelog
  • f28db2d Merge pull request #269 from Muscraft/no-leading-zero
  • 20258de Merge pull request #270 from Muscraft/coverage-rustfmt
  • b8a3a15 fix: Ensuse rustfmt is installed for coverage
  • ba45662 fix: Don't add leading zero to single digit ansi 256
  • Additional commits viewable in compare view

Updates anyhow from 1.0.99 to 1.0.100

Release notes

Sourced from anyhow's releases.

1.0.100

  • Teach clippy to lint formatting arguments in bail!, ensure!, anyhow! (#426)
Commits
  • 18c2598 Release 1.0.100
  • f271988 Merge pull request #426 from dtolnay/clippyfmt
  • 52f2115 Mark macros with clippy::format_args
  • da5fd9d Raise minimum tested compiler to rust 1.76
  • 211e409 Opt in to generate-macro-expansion when building on docs.rs
  • b48fc02 Enforce trybuild >= 1.0.108
  • d5f59fb Update ui test suite to nightly-2025-09-07
  • 238415d Update ui test suite to nightly-2025-08-24
  • 3bab070 Update actions/checkout@v4 -> v5
  • 4249254 Order cap-lints flag in the same order as thiserror build script
  • See full diff in compare view

Updates backtrace from 0.3.75 to 0.3.76

Release notes

Sourced from backtrace's releases.

backtrace-v0.3.76

Behavior

  • Fix inverted polarity of "full printing" logic in rust-lang/backtrace-rs#726: Previously we used to do the opposite of what you would expect.

Platform Support

Dependencies

Changelog

Sourced from backtrace's changelog.

0.3.76 - 2025-09-26

Behavior

  • Fix inverted polarity of "full printing" logic in rust-lang/backtrace-rs#726: Previously we used to do the opposite of what you would expect.

Platform Support

Dependencies

Commits
  • 775f6a1 modify CHANGELOG.md to not be a git log dump
  • bb0cdc3 chore: release v0.3.76
  • a8b55f0 Merge of rust-lang/backtrace-rs#725: Fix missing alignment check for ELF note...
  • 0b83800 Expand take_nhdr doc-comment
  • a405950 Merge pull request #737 from workingjubilee/address-dbghelp-soundness-risks
  • 06dca9a Expand doc-comment on do_resolve
  • 05ad047 Remove padding bytes risk in dbghelp with MaybeUninit
  • dccdb4d Upgrade cpp_demanglerust-lang/backtrace-rs#732
  • 50fe434rust-lang/backtrace-rs#734
  • 79d3514 Switch from windows-targets to windows-linkrust-lang/backtrace-rs#727
  • Additional commits viewable in compare view

Updates cc from 1.2.34 to 1.2.39

Changelog

Sourced from cc's changelog.

1.2.39 - 2025-09-26

Other

  • Fix cross compilation to xtensa-esp32s3-espidf (#1569)
  • Fix autodetect_wasi_compiler: support non utf-8 path (#1568)
  • Regenerate target info (#1567)
  • Fix rustcflags mapping: require -Clinker-plugin-lto for -flto (#1564)
  • Use $WASI_SDK_PATH on WASI targets by default (#1562)
  • Fix atomicity violations in concurrent cache operations (#1559)

1.2.38 - 2025-09-19

Other

  • updated the following local packages: find-msvc-tools

1.2.37 - 2025-09-12

Other

  • Fix errmsg in RustcCodegenFlags::set_rustc_flag (#1551)
  • propagate stack protector to Linux C compilers (#1550)
  • Extract new fn run_commands_in_parallel (#1549)

1.2.36 - 2025-09-05

Other

  • Regenerate windows sys bindings (#1548)
  • Update windows-bindgen requirement from 0.62 to 0.63 (#1547)
  • Add fn get_ucrt_dir for find-msvc-tools (#1546)
  • Regenerate target info (#1544)
  • fix publish.yml (#1543)
  • Replace periods with underscores as well when parsing env variables (#1541)

1.2.35 - 2025-09-01

Fixed

  • fix building for aarch64-apple-visionos-sim on nightly (#1534)
  • fix tests apple_sdkroot_wrong (#1530)

Other

  • Regenerate target info (#1536)
  • Optimize Tool::to_command (#1535)
  • Extract find-msvc-tools (#1531)
  • Add prefer_clang_cl_over_msvc (#1516)
Commits

Updates clap_builder from 4.5.44 to 4.5.48

Release notes

Sourced from clap_builder's releases.

v4.5.48

[4.5.48] - 2025-09-19

Documentation

  • Add a new CLI Concepts document as another way of framing clap
  • Expand the typed_derive cookbook entry

v4.5.47

[4.5.47] - 2025-09-02

Features

  • Added impl FromArgMatches for ()
  • Added impl Args for ()
  • Added impl Subcommand for ()
  • Added impl FromArgMatches for Infallible
  • Added impl Subcommand for Infallible

Fixes

  • (derive) Update runtime error text to match clap

v4.5.46

[4.5.46] - 2025-08-26

Features

  • Expose StyledStr::push_str

v4.5.45

[4.5.45] - 2025-08-12

Fixes

  • (unstable-v5) ValueEnum variants now use the full doc comment, not summary, for PossibleValue::help
Changelog

Sourced from clap_builder's changelog.

[4.5.48] - 2025-09-19

Documentation

  • Add a new CLI Concepts document as another way of framing clap
  • Expand the typed_derive cookbook entry

[4.5.47] - 2025-09-02

Features

  • Added impl FromArgMatches for ()
  • Added impl Args for ()
  • Added impl Subcommand for ()
  • Added impl FromArgMatches for Infallible
  • Added impl Subcommand for Infallible

Fixes

  • (derive) Update runtime error text to match clap

[4.5.46] - 2025-08-26

Features

  • Expose StyledStr::push_str

[4.5.45] - 2025-08-12

Fixes

  • (unstable-v5) ValueEnum variants now use the full doc comment, not summary, for PossibleValue::help
Commits
  • 8e3d036 chore: Release
  • 0b7b878 docs: Update changelog
  • 1d6ca6a Merge pull request #6137 from epage/docs
  • 03f80de Merge pull request #6136 from epage/delimit
  • 250a3f1 docs(builder): Explain dont_delimit_trailing_values
  • 9d36f24 docs(concepts): Introduce a concept-focused document for clap
  • d65a752 test: Fix for 1.90
  • afea148 chore(ci): Make jobs blocking that were overlooked
  • c355d8e chore(gh): Ensure triage labels are applied
  • 14e7d8d chore(deps): Update Rust Stable to v1.90 (#6133)
  • Additional commits viewable in compare view

Updates clap_derive from 4.5.45 to 4.5.47

Release notes

Sourced from clap_derive's releases.

v4.5.47

[4.5.47] - 2025-09-02

Features

  • Added impl FromArgMatches for ()
  • Added impl Args for ()
  • Added impl Subcommand for ()
  • Added impl FromArgMatches for Infallible
  • Added impl Subcommand for Infallible

Fixes

  • (derive) Update runtime error text to match clap

v4.5.46

[4.5.46] - 2025-08-26

Features

  • Expose StyledStr::push_str
Changelog

Sourced from clap_derive's changelog.

[4.5.47] - 2025-09-02

Features

  • Added impl FromArgMatches for ()
  • Added impl Args for ()
  • Added impl Subcommand for ()
  • Added impl FromArgMatches for Infallible
  • Added impl Subcommand for Infallible

Fixes

  • (derive) Update runtime error text to match clap

[4.5.46] - 2025-08-26

Features

  • Expose StyledStr::push_str
Commits
  • f8b9e24 chore: Release
  • 4457eb9 docs: Update changelog
  • f1d9120 Merge pull request #6119 from alexkazik/empty-impl
  • 0ad7787 Merge pull request #6120 from epage/error
  • 395d657 feat: provide empty implementations for Args and Subcommand
  • 92fd6e7 fix(derive): Match rustc's error style
  • d045daa Merge pull request #6116 from eatradish/clap-i18n-richformatter
  • 0bb71a0 docs: add clap-i18n-richformatter to Related Projects
  • f9fd356 chore: Release
  • 889a197 docs: Update changelog
  • Additional commits viewable in compare view

Updates errno from 0.3.13 to 0.3.14

Changelog

Sourced from errno's changelog.

[0.3.14] - 2025-09-08

  • Update windows-sys requirement from >=0.52, <=0.59 to >=0.52, <0.62 #117
Commits

Updates gimli from 0.31.1 to 0.32.3

Changelog

Sourced from gimli's changelog.

0.32.3

Released 2025/09/13.

Changed

  • Changed parsing to accept -2 for tombstone values in .debug_line, .debug_aranges, .debug_loclists, and .debug_rnglists. #791

Added

  • Added more x86-64 register definitions. #794

0.32.2

Released 2025/08/26.

Changed

  • Removed PartialEq<Debug*Offset> implementations for UnitSectionOffset. These were an unintended breaking change. #789

0.32.1

Released 2025/08/22.

Changed

  • Improved handling of invalid DIE references during writing. #777 #779

  • Changed abbreviation parsing to allow a missing null terminator. #781

  • Changed write::LineProgram to support any form for file source code. #784 #786

Added

  • Added DWARF version 1.1 constant definitions. #775

... (truncated)

Commits

Updates iana-time-zone from 0.1.63 to 0.1.64

Changelog

Sourced from iana-time-zone's changelog.

[0.1.64] - 2025-09-12

Changed

  • Bump windows-core to 0.56-0.62 range (#177
Commits
  • 2a3665e Bump version number to 0.1.64
  • d4ea1ec Merge pull request #177 from git-staus/main
  • 7629338 Bump the windows-core version
  • fc6ed13 Merge pull request #175 from strawlab/dependabot/github_actions/actions/setup...
  • c4d1a1e Bump actions/setup-node from 4 to 5
  • 165d4f1 Bump actions/checkout from 4 to 5
  • 0e0a0d0 Merge pull request #169 from strawlab/dependabot/github_actions/astral-sh/set...
  • 44f371e Bump astral-sh/setup-uv from 5 to 6
  • 6d3fe92 clippy fix (#168)
  • See full diff in compare view

Updates indexmap from 2.11.0 to 2.11.4

Changelog

Sourced from indexmap's changelog.

2.11.4 (2025-09-18)

  • Updated the hashbrown dependency to a range allowing 0.15 or 0.16.

2.11.3 (2025-09-15)

  • Make the minimum serde version only apply when "serde" is enabled.

2.11.2 (2025-09-15)

  • Switched the "serde" feature to depend on serde_core, improving build parallelism in cases where other dependents have enabled "serde/derive".

2.11.1 (2025-09-08)

  • Added a get_key_value_mut method to IndexMap.
  • Removed the unnecessary Ord bound on insert_sorted_by methods.
Commits

Bumps the all-deps group with 35 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [chrono](https://github.com/chronotope/chrono) | `0.4.41` | `0.4.42` |
| [clap](https://github.com/clap-rs/clap) | `4.5.45` | `4.5.48` |
| [getrandom](https://github.com/rust-random/getrandom) | `0.2.16` | `0.3.2` |
| [tempfile](https://github.com/Stebalien/tempfile) | `3.21.0` | `3.23.0` |
| [url](https://github.com/servo/rust-url) | `2.5.6` | `2.5.7` |
| [uuid](https://github.com/uuid-rs/uuid) | `1.18.0` | `1.18.1` |
| [zeroize](https://github.com/RustCrypto/utils) | `1.8.1` | `1.8.2` |
| [anstream](https://github.com/rust-cli/anstyle) | `0.6.20` | `0.6.21` |
| [anstyle](https://github.com/rust-cli/anstyle) | `1.0.11` | `1.0.13` |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.99` | `1.0.100` |
| [backtrace](https://github.com/rust-lang/backtrace-rs) | `0.3.75` | `0.3.76` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.2.34` | `1.2.39` |
| [errno](https://github.com/lambda-fairy/rust-errno) | `0.3.13` | `0.3.14` |
| [iana-time-zone](https://github.com/strawlab/iana-time-zone) | `0.1.63` | `0.1.64` |
| [indexmap](https://github.com/indexmap-rs/indexmap) | `2.11.0` | `2.11.4` |
| [libc](https://github.com/rust-lang/libc) | `0.2.175` | `0.2.176` |
| [log](https://github.com/rust-lang/log) | `0.4.27` | `0.4.28` |
| [memchr](https://github.com/BurntSushi/memchr) | `2.7.5` | `2.7.6` |
| [owo-colors](https://github.com/owo-colors/owo-colors) | `4.2.2` | `4.2.3` |
| [potential_utf](https://github.com/unicode-org/icu4x) | `0.1.2` | `0.1.3` |
| [quote](https://github.com/dtolnay/quote) | `1.0.40` | `1.0.41` |
| [regex](https://github.com/rust-lang/regex) | `1.11.1` | `1.11.2` |
| [regex-automata](https://github.com/rust-lang/regex) | `0.4.9` | `0.4.11` |
| [regex-syntax](https://github.com/rust-lang/regex) | `0.8.5` | `0.8.6` |
| [rustix](https://github.com/bytecodealliance/rustix) | `1.0.8` | `1.1.2` |
| [schannel](https://github.com/steffengy/schannel-rs) | `0.1.27` | `0.1.28` |
| [security-framework-sys](https://github.com/kornelski/rust-security-framework) | `2.14.0` | `2.15.0` |
| [semver](https://github.com/dtolnay/semver) | `1.0.26` | `1.0.27` |
| [serde_bytes](https://github.com/serde-rs/bytes) | `0.11.17` | `0.11.19` |
| [time](https://github.com/time-rs/time) | `0.3.41` | `0.3.44` |
| [typenum](https://github.com/paholg/typenum) | `1.18.0` | `1.19.0` |
| [unicode-ident](https://github.com/dtolnay/unicode-ident) | `1.0.18` | `1.0.19` |
| [winapi-util](https://github.com/BurntSushi/winapi-util) | `0.1.10` | `0.1.11` |
| [windows-core](https://github.com/microsoft/windows-rs) | `0.61.2` | `0.62.1` |
| [zerocopy](https://github.com/google/zerocopy) | `0.8.26` | `0.8.27` |



Updates `chrono` from 0.4.41 to 0.4.42
- [Release notes](https://github.com/chronotope/chrono/releases)
- [Changelog](https://github.com/chronotope/chrono/blob/main/CHANGELOG.md)
- [Commits](chronotope/chrono@v0.4.41...v0.4.42)

Updates `clap` from 4.5.45 to 4.5.48
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@clap_complete-v4.5.45...clap_complete-v4.5.48)

Updates `getrandom` from 0.2.16 to 0.3.2
- [Changelog](https://github.com/rust-random/getrandom/blob/master/CHANGELOG.md)
- [Commits](rust-random/getrandom@v0.2.16...v0.3.2)

Updates `tempfile` from 3.21.0 to 3.23.0
- [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md)
- [Commits](Stebalien/tempfile@v3.21.0...v3.23.0)

Updates `url` from 2.5.6 to 2.5.7
- [Release notes](https://github.com/servo/rust-url/releases)
- [Commits](https://github.com/servo/rust-url/commits/v2.5.7)

Updates `uuid` from 1.18.0 to 1.18.1
- [Release notes](https://github.com/uuid-rs/uuid/releases)
- [Commits](uuid-rs/uuid@v1.18.0...v1.18.1)

Updates `zeroize` from 1.8.1 to 1.8.2
- [Commits](RustCrypto/utils@zeroize-v1.8.1...zeroize-v1.8.2)

Updates `anstream` from 0.6.20 to 0.6.21
- [Commits](rust-cli/anstyle@anstream-v0.6.20...anstream-v0.6.21)

Updates `anstyle` from 1.0.11 to 1.0.13
- [Commits](rust-cli/anstyle@v1.0.11...v1.0.13)

Updates `anyhow` from 1.0.99 to 1.0.100
- [Release notes](https://github.com/dtolnay/anyhow/releases)
- [Commits](dtolnay/anyhow@1.0.99...1.0.100)

Updates `backtrace` from 0.3.75 to 0.3.76
- [Release notes](https://github.com/rust-lang/backtrace-rs/releases)
- [Changelog](https://github.com/rust-lang/backtrace-rs/blob/master/CHANGELOG.md)
- [Commits](rust-lang/backtrace-rs@0.3.75...backtrace-v0.3.76)

Updates `cc` from 1.2.34 to 1.2.39
- [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.34...cc-v1.2.39)

Updates `clap_builder` from 4.5.44 to 4.5.48
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@v4.5.44...v4.5.48)

Updates `clap_derive` from 4.5.45 to 4.5.47
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@v4.5.45...v4.5.47)

Updates `errno` from 0.3.13 to 0.3.14
- [Release notes](https://github.com/lambda-fairy/rust-errno/releases)
- [Changelog](https://github.com/lambda-fairy/rust-errno/blob/main/CHANGELOG.md)
- [Commits](https://github.com/lambda-fairy/rust-errno/commits)

Updates `gimli` from 0.31.1 to 0.32.3
- [Changelog](https://github.com/gimli-rs/gimli/blob/master/CHANGELOG.md)
- [Commits](gimli-rs/gimli@0.31.1...0.32.3)

Updates `iana-time-zone` from 0.1.63 to 0.1.64
- [Changelog](https://github.com/strawlab/iana-time-zone/blob/main/CHANGELOG.md)
- [Commits](strawlab/iana-time-zone@v0.1.63...v0.1.64)

Updates `indexmap` from 2.11.0 to 2.11.4
- [Changelog](https://github.com/indexmap-rs/indexmap/blob/main/RELEASES.md)
- [Commits](indexmap-rs/indexmap@2.11.0...2.11.4)

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

Updates `log` from 0.4.27 to 0.4.28
- [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.27...0.4.28)

Updates `memchr` from 2.7.5 to 2.7.6
- [Commits](BurntSushi/memchr@2.7.5...2.7.6)

Updates `object` from 0.36.7 to 0.37.3
- [Changelog](https://github.com/gimli-rs/object/blob/master/CHANGELOG.md)
- [Commits](gimli-rs/object@0.36.7...0.37.3)

Updates `owo-colors` from 4.2.2 to 4.2.3
- [Release notes](https://github.com/owo-colors/owo-colors/releases)
- [Changelog](https://github.com/owo-colors/owo-colors/blob/main/CHANGELOG.md)
- [Commits](owo-colors/owo-colors@v4.2.2...v4.2.3)

Updates `potential_utf` from 0.1.2 to 0.1.3
- [Release notes](https://github.com/unicode-org/icu4x/releases)
- [Changelog](https://github.com/unicode-org/icu4x/blob/main/CHANGELOG.md)
- [Commits](https://github.com/unicode-org/icu4x/commits/ind/[email protected])

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

Updates `regex` from 1.11.1 to 1.11.2
- [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.11.1...1.11.2)

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

Updates `regex-syntax` from 0.8.5 to 0.8.6
- [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.5...regex-syntax-0.8.6)

Updates `rustix` from 1.0.8 to 1.1.2
- [Release notes](https://github.com/bytecodealliance/rustix/releases)
- [Changelog](https://github.com/bytecodealliance/rustix/blob/main/CHANGES.md)
- [Commits](bytecodealliance/rustix@v1.0.8...v1.1.2)

Updates `schannel` from 0.1.27 to 0.1.28
- [Release notes](https://github.com/steffengy/schannel-rs/releases)
- [Commits](steffengy/schannel-rs@v0.1.27...v0.1.28)

Updates `security-framework-sys` from 2.14.0 to 2.15.0
- [Commits](https://github.com/kornelski/rust-security-framework/commits)

Updates `semver` from 1.0.26 to 1.0.27
- [Release notes](https://github.com/dtolnay/semver/releases)
- [Commits](dtolnay/semver@1.0.26...1.0.27)

Updates `serde_bytes` from 0.11.17 to 0.11.19
- [Release notes](https://github.com/serde-rs/bytes/releases)
- [Commits](serde-rs/bytes@0.11.17...0.11.19)

Updates `serde_derive` from 1.0.219 to 1.0.228
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.219...v1.0.228)

Updates `time` from 0.3.41 to 0.3.44
- [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.41...v0.3.44)

Updates `time-core` from 0.1.4 to 0.1.6
- [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 `time-macros` from 0.2.22 to 0.2.24
- [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.2.22...v0.2.24)

Updates `typenum` from 1.18.0 to 1.19.0
- [Release notes](https://github.com/paholg/typenum/releases)
- [Changelog](https://github.com/paholg/typenum/blob/main/CHANGELOG.md)
- [Commits](paholg/typenum@v1.18.0...v1.19.0)

Updates `unicode-ident` from 1.0.18 to 1.0.19
- [Release notes](https://github.com/dtolnay/unicode-ident/releases)
- [Commits](dtolnay/unicode-ident@1.0.18...1.0.19)

Updates `winapi-util` from 0.1.10 to 0.1.11
- [Commits](BurntSushi/winapi-util@0.1.10...0.1.11)

Updates `windows-core` from 0.61.2 to 0.62.1
- [Release notes](https://github.com/microsoft/windows-rs/releases)
- [Commits](https://github.com/microsoft/windows-rs/commits)

Updates `windows-implement` from 0.60.0 to 0.60.1
- [Release notes](https://github.com/microsoft/windows-rs/releases)
- [Commits](https://github.com/microsoft/windows-rs/commits)

Updates `windows-interface` from 0.59.1 to 0.59.2
- [Release notes](https://github.com/microsoft/windows-rs/releases)
- [Commits](https://github.com/microsoft/windows-rs/commits)

Updates `windows-result` from 0.3.4 to 0.4.0
- [Release notes](https://github.com/microsoft/windows-rs/releases)
- [Commits](https://github.com/microsoft/windows-rs/commits)

Updates `windows-strings` from 0.4.2 to 0.5.0
- [Release notes](https://github.com/microsoft/windows-rs/releases)
- [Changelog](https://github.com/microsoft/windows-rs/blob/0.5.0/docs/changelog.md)
- [Commits](https://github.com/microsoft/windows-rs/commits/0.5.0)

Updates `zerocopy` from 0.8.26 to 0.8.27
- [Release notes](https://github.com/google/zerocopy/releases)
- [Changelog](https://github.com/google/zerocopy/blob/main/CHANGELOG.md)
- [Commits](google/zerocopy@v0.8.26...v0.8.27)

Updates `zerocopy-derive` from 0.8.26 to 0.8.27
- [Release notes](https://github.com/google/zerocopy/releases)
- [Changelog](https://github.com/google/zerocopy/blob/main/CHANGELOG.md)
- [Commits](google/zerocopy@v0.8.26...v0.8.27)

---
updated-dependencies:
- dependency-name: chrono
  dependency-version: 0.4.42
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-deps
- dependency-name: clap
  dependency-version: 4.5.48
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-deps
- dependency-name: getrandom
  dependency-version: 0.3.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-deps
- dependency-name: tempfile
  dependency-version: 3.23.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-deps
- dependency-name: url
  dependency-version: 2.5.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-deps
- dependency-name: uuid
  dependency-version: 1.18.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-deps
- dependency-name: zeroize
  dependency-version: 1.8.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-deps
- dependency-name: anstream
  dependency-version: 0.6.21
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-deps
- dependency-name: anstyle
  dependency-version: 1.0.13
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-deps
- dependency-name: anyhow
  dependency-version: 1.0.100
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-deps
- dependency-name: backtrace
  dependency-version: 0.3.76
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-deps
- dependency-name: cc
  dependency-version: 1.2.39
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-deps
- dependency-name: clap_builder
  dependency-version: 4.5.48
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-deps
- dependency-name: clap_derive
  dependency-version: 4.5.47
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-deps
- dependency-name: errno
  dependency-version: 0.3.14
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-deps
- dependency-name: gimli
  dependency-version: 0.32.3
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-deps
- dependency-name: iana-time-zone
  dependency-version: 0.1.64
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-deps
- dependency-name: indexmap
  dependency-version: 2.11.4
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-deps
- dependency-name: libc
  dependency-version: 0.2.176
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-deps
- dependency-name: log
  dependency-version: 0.4.28
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-deps
- dependency-name: memchr
  dependency-version: 2.7.6
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-deps
- dependency-name: object
  dependency-version: 0.37.3
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-deps
- dependency-name: owo-colors
  dependency-version: 4.2.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-deps
- dependency-name: potential_utf
  dependency-version: 0.1.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-deps
- dependency-name: quote
  dependency-version: 1.0.41
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-deps
- dependency-name: regex
  dependency-version: 1.11.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-deps
- dependency-name: regex-automata
  dependency-version: 0.4.11
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-deps
- dependency-name: regex-syntax
  dependency-version: 0.8.6
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-deps
- dependency-name: rustix
  dependency-version: 1.1.2
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-deps
- dependency-name: schannel
  dependency-version: 0.1.28
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-deps
- dependency-name: security-framework-sys
  dependency-version: 2.15.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-deps
- dependency-name: semver
  dependency-version: 1.0.27
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-deps
- dependency-name: serde_bytes
  dependency-version: 0.11.19
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-deps
- dependency-name: serde_derive
  dependency-version: 1.0.228
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-deps
- dependency-name: time
  dependency-version: 0.3.44
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-deps
- dependency-name: time-core
  dependency-version: 0.1.6
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-deps
- dependency-name: time-macros
  dependency-version: 0.2.24
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-deps
- dependency-name: typenum
  dependency-version: 1.19.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-deps
- dependency-name: unicode-ident
  dependency-version: 1.0.19
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-deps
- dependency-name: winapi-util
  dependency-version: 0.1.11
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-deps
- dependency-name: windows-core
  dependency-version: 0.62.1
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-deps
- dependency-name: windows-implement
  dependency-version: 0.60.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-deps
- dependency-name: windows-interface
  dependency-version: 0.59.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-deps
- dependency-name: windows-result
  dependency-version: 0.4.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-deps
- dependency-name: windows-strings
  dependency-version: 0.5.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-deps
- dependency-name: zerocopy
  dependency-version: 0.8.27
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-deps
- dependency-name: zerocopy-derive
  dependency-version: 0.8.27
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-deps
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Oct 2, 2025
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Oct 9, 2025

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Oct 9, 2025
@dependabot dependabot bot deleted the dependabot/cargo/all-deps-f81f1abd4b branch October 9, 2025 18:15
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.

1 participant