Skip to content

Conversation

@dependabot
Copy link
Contributor

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

Bumps the dependencies group with 19 updates in the / directory:

Package From To
anyhow 1.0.97 1.0.100
base16ct 0.2.0 0.3.0
cargo_metadata 0.18.1 0.21.0
chrono 0.4.40 0.4.42
clap 4.5.32 4.5.50
directories 5.0.1 6.0.0
env_logger 0.11.7 0.11.8
flate2 1.1.0 1.1.4
git2 0.19.0 0.20.2
goblin 0.9.3 0.10.3
log 0.4.27 0.4.28
oci-spec 0.7.1 0.8.3
regex 1.11.1 1.12.2
serde_json 1.0.140 1.0.145
sha2 0.10.8 0.10.9
tempfile 3.19.1 3.23.0
toml 0.8.20 0.9.8
ureq 2.12.1 3.1.2
uuid 1.16.0 1.18.1

Updates anyhow from 1.0.97 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)

1.0.99

  • Allow build-script cleanup failure with NFSv3 output directory to be non-fatal (#420)

1.0.98

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
  • Additional commits viewable in compare view

Updates base16ct from 0.2.0 to 0.3.0

Commits
  • 09dd7d7 base16ct v0.3.0 (#2005)
  • 1b0cee8 base16ct: remove std feature (#2004)
  • be18550 chore(deps): bump the all-deps group with 4 updates (#2001)
  • 3db5969 chore(deps): bump crate-ci/typos from 1.35.3 to 1.35.4 (#2000)
  • d2cc2af Add info about new MSRV policy to crates we can imminently release (#2002)
  • 022fe82 chore(deps): bump crate-ci/typos from 1.34.0 to 1.35.3 (#1993)
  • e2668fb chore(deps): bump the all-deps group with 5 updates (#1994)
  • 36cc7b3 chore(deps): bump actions/checkout from 4 to 5 (#1995)
  • 809b1a2 cms: propagate std feature to x509-cert (#1990)
  • 8c60e19 chore(deps): bump rstest from 0.25.0 to 0.26.0 (#1988)
  • Additional commits viewable in compare view

Updates cargo_metadata from 0.18.1 to 0.21.0

Commits
  • 70018a8 Update main.yml
  • 523cfbe bump msrv
  • b1a61d3 bump version
  • 0f300d5 Merge pull request #295 from smoelius/update-cargo-util-schemas
  • 4b28226 Merge pull request #300 from joeferner/fix-node-dep-name
  • bcd2373 fix clippy errors
  • 73aaebb fixes "package name cannot be empty" under "resolve/nodes/deps/name"
  • f9a67c2 Merge pull request #298 from kornelski/result
  • 289e117 Make Result alias wildcard-import-proof
  • a9147a6 Merge pull request #297 from ranger-ross/build-dir-unstable-support
  • Additional commits viewable in compare view

Updates chrono from 0.4.40 to 0.4.42

Release notes

Sourced from chrono's releases.

0.4.42

What's Changed

v0.4.41

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.32 to 4.5.50

Release notes

Sourced from clap's releases.

v4.5.50

[4.5.50] - 2025-10-20

Features

  • Accept Cow where String and &str are accepted

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

v4.5.44

[4.5.44] - 2025-08-11

Features

  • Add Command::mut_subcommands

... (truncated)

Changelog

Sourced from clap's changelog.

[4.5.50] - 2025-10-20

Features

  • Accept Cow where String and &str are accepted

[4.5.49] - 2025-10-13

Fixes

  • (help) Correctly wrap when ANSI escape codes are present

[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

[4.5.44] - 2025-08-11

Features

  • Add Command::mut_subcommands

... (truncated)

Commits
  • d8acd47 chore: Release
  • 7c2b8d9 docs: Update changelog
  • e69a2ea Merge pull request #5987 from mernen/fix-bash-comp-words-loop
  • e03cc2e Merge pull request #5988 from cordx56/fix-builder-custom-version-docs
  • 5ab2579 fix: Minor fix for builder docs about version
  • 2f66432 fix(complete): Only parse arguments before current
  • 4d9d210 test(complete): Illustrate current behavior in Bash
  • 6abe2f8 chore: Release
  • d5c7454 docs: Update changelog
  • 5b2e960 Merge pull request #5985 from mernen/bash-cur
  • Additional commits viewable in compare view

Updates directories from 5.0.1 to 6.0.0

Commits

Updates env_logger from 0.11.7 to 0.11.8

Release notes

Sourced from env_logger's releases.

v0.11.8

[0.11.8] - 2025-04-01

Compatibility

  • (kv) Deprecate the unstable-kv feature which may be removed in a future patch release

Features

  • (kv) Stabilize key-value support behind the kv feature
  • Expose ConfigurableFormat to build custom [Builder::format]s that leverage this
Changelog

Sourced from env_logger's changelog.

[0.11.8] - 2025-04-01

Compatibility

  • (kv) Deprecate the unstable-kv feature which may be removed in a future patch release

Features

  • (kv) Stabilize key-value support behind the kv feature
  • Expose ConfigurableFormat to build custom [Builder::format]s that leverage this
Commits
  • f0443b2 chore: Release
  • d8b5e1e docs: Update changelog
  • 3ca671f Merge pull request #360 from epage/format
  • bc02d61 feat(fmt): Expose ConfigurableFormat
  • c567fde refactor(fmt): Pull out format logic
  • ce25c73 refactor(fmt): Make DefaultFormats name more specific
  • 739ebb1 refactor(fmt): Pull out logger's builder methods
  • 3acb571 refactor(fmt): Delegate formatting to DefaultFormat
  • e351bcb refactor(fmt): Reduce duplication in DefaultFormatWriter
  • 3c9e6ff Merge pull request #359 from epage/kv
  • Additional commits viewable in compare view

Updates flate2 from 1.1.0 to 1.1.4

Release notes

Sourced from flate2's releases.

1.1.3

What's Changed

New Contributors

Full Changelog: rust-lang/flate2-rs@1.1.2...1.1.3

1.1.2

What's Changed

Full Changelog: rust-lang/flate2-rs@1.1.1...1.1.2

1.1.1

This release should be smaller and thus faster to download. Additionally, when using the zlib-rs backend, duplicate symbol issues shouldn't occur anymore.

What's Changed

New Contributors

Full Changelog: rust-lang/flate2-rs@1.1.0...1.1.1

Commits
  • ac412e9 Merge pull request #506 from NobodyXu/patch-1
  • bf0315b Release flste2 1.1.4
  • 350de28 Merge pull request #505 from NobodyXu/patch-1
  • 29552c7 Fix docs.rs build
  • 3be6590 Merge pull request #504 from Byron/release
  • 7ad1bad bump the patch level for a new release
  • 3cae7da Merge pull request #502 from NobodyXu/patch-1
  • ee3d877 Add (de)compress_uninit impl for uninit buffer
  • b9afa93 Merge pull request #503 from jongiddy/update-cloudflare-zlib
  • cfd60be Update cloudflare-zlib-sys crate
  • Additional commits viewable in compare view

Updates git2 from 0.19.0 to 0.20.2

Changelog

Sourced from git2's changelog.

0.20.2 - 2025-05-05

0.20.1...0.20.2

Added

  • Added Status::WT_UNREADABLE. #1151

Fixed

  • Added missing codes for GIT_EDIRECTORY, GIT_EMERGECONFLICT, GIT_EUNCHANGED, GIT_ENOTSUPPORTED, and GIT_EREADONLY to Error::raw_code. #1153
  • Fixed missing initialization in Indexer::new. #1160

0.20.1 - 2025-03-17

0.20.0...0.20.1

Added

  • Added Repository::branch_upstream_merge() #1131
  • Added Index::conflict_get() #1134
  • Added Index::conflict_remove() #1133
  • Added opts::set_cache_object_limit() #1118
  • Added Repo::merge_file_from_index() and associated MergeFileOptions and MergeFileResult. #1062

Changed

  • The url dependency minimum raised to 2.5.4 #1128
  • Changed the tracing callback to abort the process if the callback panics instead of randomly detecting the panic in some other function. #1121
  • Credential helper config (loaded with CredentialHelper::config) now checks for helpers that start with something that looks like an absolute path, rather than checking for a / or \ anywhere in the helper string (which resolves an issue if the helper had arguments with / or \). #1137

Fixed

  • Fixed panic in Remote::url_bytes if the url is empty. #1120
  • Fixed incorrect lifetimes on Patch::delta, Patch::hunk, and Patch::line_in_hunk. The return values must not outlive the Patch. #1141
  • Bumped requirement to libgit2-sys 0.18.1, which fixes linking of advapi32 on Windows. #1143

... (truncated)

Commits
  • 1fb5f64 Merge pull request #1161 from ehuss/bump-version
  • 26bfd30 Update version of git2 to 0.20.2
  • eef4592 Merge pull request #1160 from ehuss/indexer-init
  • 7f42b7a Clarify Indexer::new path parameter
  • 1774e57 Call init in Indexer::new
  • 5bc3baa Merge pull request #1155 from reddevilmidzy/master
  • ba5e1b3 Make link an intra-doc link
  • 38681b1 fix: add a backtick
  • b82f801 Merge pull request #1153 from alyssais/raw_code
  • 00faf61 Add missing code checks to Error::raw_code()
  • Additional commits viewable in compare view

Updates goblin from 0.9.3 to 0.10.3

Changelog

Sourced from goblin's changelog.

[0.10.3] - 2025-10-16

Fixed

pe: fix regression in PE relocs, thanks @​PJB3005: m4b/goblin#496

[0.10.2] - 2025-10-5

Added

pe: make LoadConfigData::directory public, thanks @​kkent030315: m4b/goblin#488

Fixed

pe: remove alignment in rva helper function, huge amount of great details in the linked PR, thanks @​makubacki: m4b/goblin#491 elf, pe: Add/Extend ELF/PE permissive parsing mode to better handle packed, broken, or malware samples, thanks @​chf0x: m4b/goblin#479 pe: fix resource parsing issues, thanks @​x0rb3l: m4b/goblin#490 pe: fix bad lifetime annotation, thanks @​Hexorg: m4b/goblin#493 pe, mach, elf: fix lifetime warnings (no pr): fddcc4747ccf306469ff6092a953bd667ec8ed7d

[0.10.1] - 2025-8-14

Added

pe: Add .NET CLR parser, thanks @​kkent030315: m4b/goblin#432 pe: Add parser for C_SCOPE_TABLE, thanks @​kkent030315: m4b/goblin#477 pe: Add resource parser, thanks @​kkent030315: m4b/goblin#431 pe: Add parse_tls_data option, thanks @​ideeockus: m4b/goblin#457 pe: Add load config parser, thanks @​kkent030315: m4b/goblin#464 elf: added type_to_str support for coredump constants, thanks @​gunbux: m4b/goblin#475 elf: added PowerPC64 relocations, thanks @​Gelbpunkt: m4b/goblin#484

Fixed

pe: fix load config parser out of bounds, thanks @​kkent030315 and Robel Campbell: m4b/goblin#483 pe: remove unwind info alignment assertion, thanks @​kkent030315: m4b/goblin#480 pe: fix base relocation parser panic, thanks @​kkent030315: m4b/goblin#465 pe: Fix some offsets computation when using scroll, thanks @​DreydenGys: m4b/goblin#471 pe: cannot read cb size, thanks chf0x: m4b/goblin#472 pe: fix tls raw data parser, thanks @​jorgeaduran and @​kkent030315: m4b/goblin#473 build: fix no-std build errors, thanks @​hannahfluch: m4b/goblin#478

[0.10.0] - 2025-5-25

Breaking

build: use rust 2024 edition; bump MSRV to 1.85 pe: fix address size incompatibility on 32-bit builds, thanks @​kkent030315: m4b/goblin#441 pe: fix fail on malformed certificate table parsing, thanks @​ideeockus: m4b/goblin#417 pe: remove use of generics for is_32bit, thanks @​kkent030315: m4b/goblin#435 pe: Support multiple debug directories and VCFeature, Repro, ExDllCharacteristics, POGO parsers, thanks @​kkent030315: m4b/goblin#403

Added

elf: add Loongarch macros and name mapping, thanks @​000lbh: m4b/goblin#446 pe: Add base relocation parser thanks @​kkent030315: m4b/goblin#444

Fixed

pe.header: fix parse without rich header, thanks @​ideeockus: m4b/goblin#451 pe.header: fix parse header with no dos stub, thanks @​ideeockus: m4b/goblin#456 pe.imports: ignore malformed imports in ParseMode::Permissive, thanks @​ideeockus: m4b/goblin#442 pe: Change Section Table Real Name Handling, thanks @​prettyroseslover: m4b/goblin#438 pe.tls: tlsdata.parse_with_opts - integer overflow + out of bound, thanks @​BinFlip: m4b/goblin#448 pe.debug: POGOInfo.parse_with_opts - integer overflow + out of bound, thanks @​BinFlip: m4b/goblin#449

... (truncated)

Commits

Updates log from 0.4.27 to 0.4.28

Release notes

Sourced from log's releases.

0.4.28

What's Changed

New Contributors

Full Changelog: rust-lang/log@0.4.27...0.4.28

Changelog

Sourced from log's changelog.

[0.4.28] - 2025-09-02

What's Changed

New Contributors

Full Changelog: rust-lang/log@0.4.27...0.4.28

Notable Changes

Commits
  • 6e17355 Merge pull request #695 from rust-lang/cargo/0.4.28
  • 57719db focus on user-facing source changes in the changelog
  • e0630c6 prepare for 0.4.28 release
  • 60829b1 Merge pull request #692 from nebkor/up-and-down
  • 95d44f8 change names of log-level-changing methods to be more descriptive
  • 2b63dfa Add up() and down() methods for Level and LevelFilter
  • 3aa1359 Merge pull request #690 from HaoliangXu/master
  • 1091f2c Chore:delete compare_exchange method for AtomicUsize on platforms
  • 24c5f44 Merge pull request #688 from ZylosLumen/patch-1
  • 4498495 Unhide #[derive(Debug)] in example
  • Additional commits viewable in compare view

Updates oci-spec from 0.7.1 to 0.8.3

Release notes

Sourced from oci-spec's releases.

v0.8.3

What's Changed

Other Changes

New Contributors

Full Changelog: youki-dev/oci-spec-rs@v0.8.2...v0.8.3

v0.8.2

What's Changed

Other Changes

New Contributors

Full Changelog: youki-dev/oci-spec-rs@v0.8.1...v0.8.2

v0.8.1

What's Changed

Other Changes

Full Changelog: youki-dev/oci-spec-rs@v0.8.0...v0.8.1

v0.8.0

What's Changed

... (truncated)

Commits
  • cdc9632 Bump to 0.8.3
  • 92364de Refactor several structures to use Default trait, simplifying default value h...
  • e530d94 Refactor LinuxMemoryPolicy to use Option for nodes, updating default value an...
  • becfcc3 Fix formatting in LinuxMemoryPolicy documentation for nodes field
  • 646d8a1 Refactor LinuxMemoryPolicy to remove Option from nodes and set default value
  • c2771f2 Add memory policy modes and flags support with serialization tests
  • c555856 Refactor LinuxMemoryPolicy struct to use Option for nodes and flags, enhancin...
  • a1cf0a3 Add memory policy support to Linux features and structures
  • 8dfd6d6 Back to dev
  • efbf8ac Bump to 0.8.2
  • Additional commits viewable in compare view

Updates regex from 1.11.1 to 1.12.2

Changelog

Sourced from regex's changelog.

1.12.2 (2025-10-13)

This release fixes a cargo doc breakage on nightly when --cfg docsrs is enabled. This caused documentation to fail to build on docs.rs.

Bug fixes:

1.12.1 (2025-10-10)

This release makes a bug fix in the new regex::Captures::get_match API introduced in 1.12.0. There was an oversight with the lifetime parameter for the Match returned. This is technically a breaking change, but given that it was caught almost immediately and I've yanked the 1.12.0 release, I think this is fine.

1.12.0 (2025-10-10)

This release contains a smattering of bug fixes, a fix for excessive memory consumption in some cases and a new regex::Captures::get_match API.

Improvements:

Bug fixes:

1.11.3 (2025-09-25)

This is a small patch release with an improvement in memory usage in some cases.

... (truncated)

Commits

Bumps the dependencies group with 19 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.97` | `1.0.100` |
| [base16ct](https://github.com/RustCrypto/formats) | `0.2.0` | `0.3.0` |
| [cargo_metadata](https://github.com/oli-obk/cargo_metadata) | `0.18.1` | `0.21.0` |
| [chrono](https://github.com/chronotope/chrono) | `0.4.40` | `0.4.42` |
| [clap](https://github.com/clap-rs/clap) | `4.5.32` | `4.5.50` |
| [directories](https://github.com/soc/directories-rs) | `5.0.1` | `6.0.0` |
| [env_logger](https://github.com/rust-cli/env_logger) | `0.11.7` | `0.11.8` |
| [flate2](https://github.com/rust-lang/flate2-rs) | `1.1.0` | `1.1.4` |
| [git2](https://github.com/rust-lang/git2-rs) | `0.19.0` | `0.20.2` |
| [goblin](https://github.com/m4b/goblin) | `0.9.3` | `0.10.3` |
| [log](https://github.com/rust-lang/log) | `0.4.27` | `0.4.28` |
| [oci-spec](https://github.com/youki-dev/oci-spec-rs) | `0.7.1` | `0.8.3` |
| [regex](https://github.com/rust-lang/regex) | `1.11.1` | `1.12.2` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.140` | `1.0.145` |
| [sha2](https://github.com/RustCrypto/hashes) | `0.10.8` | `0.10.9` |
| [tempfile](https://github.com/Stebalien/tempfile) | `3.19.1` | `3.23.0` |
| [toml](https://github.com/toml-rs/toml) | `0.8.20` | `0.9.8` |
| [ureq](https://github.com/algesten/ureq) | `2.12.1` | `3.1.2` |
| [uuid](https://github.com/uuid-rs/uuid) | `1.16.0` | `1.18.1` |



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

Updates `base16ct` from 0.2.0 to 0.3.0
- [Commits](RustCrypto/formats@base16ct/v0.2.0...base16ct/v0.3.0)

Updates `cargo_metadata` from 0.18.1 to 0.21.0
- [Release notes](https://github.com/oli-obk/cargo_metadata/releases)
- [Changelog](https://github.com/oli-obk/cargo_metadata/blob/main/CHANGELOG.md)
- [Commits](oli-obk/cargo_metadata@0.18.1...0.21.0)

Updates `chrono` from 0.4.40 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.40...v0.4.42)

Updates `clap` from 4.5.32 to 4.5.50
- [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.32...clap_complete-v4.5.50)

Updates `directories` from 5.0.1 to 6.0.0
- [Commits](https://github.com/soc/directories-rs/commits)

Updates `env_logger` from 0.11.7 to 0.11.8
- [Release notes](https://github.com/rust-cli/env_logger/releases)
- [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md)
- [Commits](rust-cli/env_logger@v0.11.7...v0.11.8)

Updates `flate2` from 1.1.0 to 1.1.4
- [Release notes](https://github.com/rust-lang/flate2-rs/releases)
- [Commits](rust-lang/flate2-rs@1.1.0...1.1.4)

Updates `git2` from 0.19.0 to 0.20.2
- [Changelog](https://github.com/rust-lang/git2-rs/blob/master/CHANGELOG.md)
- [Commits](rust-lang/git2-rs@git2-0.19.0...git2-0.20.2)

Updates `goblin` from 0.9.3 to 0.10.3
- [Changelog](https://github.com/m4b/goblin/blob/master/CHANGELOG.md)
- [Commits](https://github.com/m4b/goblin/commits)

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 `oci-spec` from 0.7.1 to 0.8.3
- [Release notes](https://github.com/youki-dev/oci-spec-rs/releases)
- [Changelog](https://github.com/youki-dev/oci-spec-rs/blob/main/release.md)
- [Commits](youki-dev/oci-spec-rs@v0.7.1...v0.8.3)

Updates `regex` from 1.11.1 to 1.12.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.12.2)

Updates `serde` 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 `serde_json` from 1.0.140 to 1.0.145
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.140...v1.0.145)

Updates `sha2` from 0.10.8 to 0.10.9
- [Commits](RustCrypto/hashes@sha2-v0.10.8...sha2-v0.10.9)

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

Updates `toml` from 0.8.20 to 0.9.8
- [Commits](toml-rs/toml@toml-v0.8.20...toml-v0.9.8)

Updates `ureq` from 2.12.1 to 3.1.2
- [Changelog](https://github.com/algesten/ureq/blob/main/CHANGELOG.md)
- [Commits](algesten/ureq@2.12.1...3.1.2)

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

---
updated-dependencies:
- dependency-name: anyhow
  dependency-version: 1.0.100
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: base16ct
  dependency-version: 0.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: cargo_metadata
  dependency-version: 0.21.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: chrono
  dependency-version: 0.4.42
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: clap
  dependency-version: 4.5.50
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: directories
  dependency-version: 6.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: env_logger
  dependency-version: 0.11.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: flate2
  dependency-version: 1.1.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: git2
  dependency-version: 0.20.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: goblin
  dependency-version: 0.10.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: log
  dependency-version: 0.4.28
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: oci-spec
  dependency-version: 0.8.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: regex
  dependency-version: 1.12.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: serde
  dependency-version: 1.0.228
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: serde_json
  dependency-version: 1.0.145
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: sha2
  dependency-version: 0.10.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: tempfile
  dependency-version: 3.23.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: toml
  dependency-version: 0.9.8
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: ureq
  dependency-version: 3.1.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: uuid
  dependency-version: 1.18.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

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 20, 2025
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 17, 2025

Dependabot tried to update this pull request, but something went wrong. We're looking into it, but in the meantime you can retry the update by commenting @dependabot recreate.

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 17, 2025

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

@dependabot dependabot bot closed this Nov 17, 2025
@dependabot dependabot bot deleted the dependabot/cargo/dependencies-3d4e00d1da branch November 17, 2025 17:32
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