Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump the cargo-minor group across 1 directory with 20 updates #19703

Merged
merged 1 commit into from
Mar 3, 2025

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 3, 2025

Bumps the cargo-minor group with 20 updates in the / directory:

Package From To
clap 4.5.30 4.5.31
anyhow 1.0.95 1.0.97
bitflags 2.8.0 2.9.0
bytemuck 1.21.0 1.22.0
chrono 0.4.39 0.4.40
flate2 1.0.35 1.1.0
log 0.4.25 0.4.26
serde 1.0.217 1.0.218
thiserror 2.0.11 2.0.12
linkme 0.3.31 0.3.32
serde_json 1.0.138 1.0.140
either 1.13.0 1.14.0
proc-macro2 1.0.93 1.0.94
quote 1.0.38 1.0.39
syn 2.0.98 2.0.99
convert_case 0.7.1 0.8.0
embed-resource 3.0.1 3.0.2
zip 2.2.2 2.2.3
insta 1.42.1 1.42.2
bzip2 0.5.1 0.5.2

Updates clap from 4.5.30 to 4.5.31

Release notes

Sourced from clap's releases.

v4.5.31

[4.5.31] - 2025-02-24

Features

  • Add ValueParserFactory for Saturating<T>
Changelog

Sourced from clap's changelog.

[4.5.31] - 2025-02-24

Features

  • Add ValueParserFactory for Saturating<T>
Commits
  • acf9abb chore: Release
  • 9186a18 docs: Update changelog
  • 233c316 Merge pull request #5926 from sorairolake/feature/value-parser-factory-for-sa...
  • 13931a2 Merge pull request #5923 from Reverier-Xu/master
  • 536e29f feat(builder): Add ValueParserFactory for Saturating\<T>
  • 45ed71c chore: Avoid using gen for rust 2024 preserved keyword
  • 5029bb3 chore: Avoid using gen for rust 2024 preserved keyword
  • 8a1d59b chore(deps): Update Rust Stable to v1.85 (#5921)
  • 9caee53 docs(changelog): Clarify 5.0.0
  • cb2352f Merge pull request #5918 from epage/test
  • Additional commits viewable in compare view

Updates anyhow from 1.0.95 to 1.0.97

Release notes

Sourced from anyhow's releases.

1.0.97

  • Documentation improvements

1.0.96

  • Documentation improvements
Commits
  • bfb89ef Release 1.0.97
  • c7fca9b Ignore elidable_lifetime_names pedantic clippy lint
  • 427c0bb Point standard library links to stable
  • f0aa0d3 Release 1.0.96
  • bc33c24 Convert html links to intra-doc links
  • 1cff785 Unset doc-scrape-examples for lib target
  • d71c806 More precise gitignore patterns
  • 3e40975 Remove **/*.rs.bk from project-specific gitignore
  • b880dd0 Ignore Cargo-generated tests/crate/target directory
  • 8891ce3 Merge pull request #404 from dtolnay/missingabi
  • Additional commits viewable in compare view

Updates bitflags from 2.8.0 to 2.9.0

Release notes

Sourced from bitflags's releases.

2.9.0

What's Changed

Full Changelog: bitflags/bitflags@2.8.0...2.9.0

Changelog

Sourced from bitflags's changelog.

2.9.0

What's Changed

Full Changelog: bitflags/bitflags@2.8.0...2.9.0

Commits
  • e197bf5 Merge pull request #439 from KodrAus/cargo/2.9.0
  • 8df6e80 prepare for 2.9.0 release
  • e92f0ae Merge pull request #438 from KodrAus/fix/ui-tests
  • 226ff75 fix up UI tests
  • 2170a26 Merge pull request #437 from wysiwys/wysiwys/add-clear-method
  • 76dde58 add tests for clear() trait method
  • ce5d420 add clear() method to trait
  • 9e45d36 Merge pull request #434 from bitflags/KodrAus-patch-1
  • 617645a pin checkout action for miri job
  • 2c836f2 Merge pull request #433 from bitflags/ci/remove-scorecard
  • Additional commits viewable in compare view

Updates bytemuck from 1.21.0 to 1.22.0

Changelog

Sourced from bytemuck's changelog.

bytemuck changelog

1.22

  • Add the pod_saturating feature, which adds Pod impls for Saturating<T> when T is already Pod.
  • A bump in the minimum bytemuck_derive dependency from 1.4.0 to 1.4.1 to avoid a bug if you have a truly ancient cargo.lock file sitting around.
  • Adds Send and Sync impls to BoxBytes.

1.21

  • Implement Pod and Zeroable for core::arch::{x86, x86_64}::__m512, __m512d and __m512i without nightly. Requires Rust 1.72, and is gated through the avx512_simd cargo feature.
  • Allow the use of must_cast_mut and must_cast_slice_mut in const contexts. Requires Rust 1.83, and is gated through the must_cast_extra cargo feature.
  • internal: introduced the maybe_const_fn macro that allows defining some function to be const depending upon some cfg predicate.

1.20

  • New functions to allocate zeroed Arc and Rc. Requires Rust 1.82
  • TransparentWrapper impls for core::cmp::Reverse and core::num::Saturating.
  • internal: Simplified the library's fill_zeroes calls to write_bytes

1.19

  • Adds the #[track_caller] attribute to functions which may panic.

1.18

  • Adds the latest_stable_rust cargo feature, which is a blanket feature that turns all other features on that are both sound and compatible with Stable rust.

1.17.1

  • Adds #[repr(C)] to the union Transmute<A, B> type that's used internally for most of the transmutations.

1.17.0

  • Makes the must_cast versions of the by-value and by-ref casts be const. The mut ref cast is unaffected for now (mut references aren't yet stable in const fn). This increases the MSRV of using that particular feature from 1.57 to 1.64.

1.16.3

  • Fully described in Lokathor/bytemuck#256, This makes casting slices to/from ZST elements more consistent between the crate's core module and other modules.

... (truncated)

Commits
  • d1d918b chore: Release bytemuck version 1.22.0
  • f48810f changelog.
  • ee2f71f Add pod_saturating feature (#303)
  • e023695 bump bytemuck_derive dependency to >= 1.4.1 (#301)
  • 9ec593d Implement Send and Sync for BoxBytes. (#299)
  • 1f6afb3 Add a pack1 as a related crate for packed integers etc. (#296)
  • c254af3 chore: Release bytemuck_derive version 1.9.0
  • 417e989 fix changelog which cargo-release goofed because crates.io goofed.
  • d6cd76c chore: Release bytemuck_derive version 1.9.0
  • 95db6e1 changelog
  • Additional commits viewable in compare view

Updates chrono from 0.4.39 to 0.4.40

Release notes

Sourced from chrono's releases.

0.4.40

What's Changed

Commits
  • 2b7a28e Bump version to 0.4.40
  • 6d29c8a Add quarter (%q) date string specifier
  • 07216ae Upgrade to windows-bindgen 0.60
  • bf1973c Use similar-asserts to show bindgen diff
  • d0f8b59 Restrict MSRV to check --lib
  • 1f345fd Switch to 2024 idiom
  • 7f6cf5e Switch to 2024 style
  • 11d227a Apply suggestions from clippy 1.85
  • 15e287b Use NaiveDateTime for internal tz_info methods. (#1658)
  • 8317e7c docs: fix minor typo
  • Additional commits viewable in compare view

Updates flate2 from 1.0.35 to 1.1.0

Release notes

Sourced from flate2's releases.

1.1.0

What's Changed

New Contributors

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

Changelog

Sourced from flate2's changelog.

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

1.0.31 (2024-08-03)

This release allows using libz-rs in the latest version, v0.2.1.

Commit Statistics

  • 7 commits contributed to the release over the course of 95 calendar days.
  • 95 days passed between releases.
  • 0 commits were understood as conventional.
  • 0 issues like '(#ID)' were seen in commit messages

Commit Details

  • Uncategorized
    • Add exclusion rule to not package github or git specific files with crate. (25541bd)
    • Crate and update changelog in preparation for release. (1dbed76)
    • Merge pull request #415 from folkertdev/bump-version-zlib-rs-0.2.1 (a7853c0)
    • Release version 1.0.31: bump libz-rs-sys version (e6f6949)
    • Merge pull request #414 from yestyle/main (9e6af00)
    • Remove duplicate word in top-most doc (411d641)
    • Merge pull request #408 from marxin/document-read-after-end (1a0daec)

v1.0.30 (2024-04-29)

Documentation

  • Document expected behavior when Read is done for ZLIB and DEFLATE decoders

Commit Statistics

  • 9 commits contributed to the release over the course of 3 calendar days.
  • 3 days passed between releases.
  • 1 commit was understood as conventional.
  • 1 unique issue was worked on: #404

... (truncated)

Commits
  • 70de9df Merge pull request #466 from folkertdev/update-zlib-rs-0.4.2
  • 13104a5 upgrade zlib-rs to version 0.4.2
  • 5a2fd04 Merge pull request #462 from CosminPerRam/feat/flush_mzflush
  • bf5bf56 feat: remove explicit redundant lifetime
  • 40c2e0f docs: fix spelling mistake in FlushCompress::Partial
  • 6146cf0 Merge pull request #461 from CosminPerRam/experimental/traits
  • ee1571b Merge pull request #464 from CosminPerRam/feat/remove_redundant_guard
  • 1be8e37 feat: remove redundant if guard on option value match
  • be59b78 docs: fix spelling mistake
  • d4aebe1 feat: reorder FlushCompress variants to be in order with value
  • Additional commits viewable in compare view

Updates log from 0.4.25 to 0.4.26

Release notes

Sourced from log's releases.

0.4.26

What's Changed

Full Changelog: rust-lang/log@0.4.25...0.4.26

Changelog

Sourced from log's changelog.

[0.4.26] - 2025-02-18

What's Changed

Full Changelog: rust-lang/log@0.4.25...0.4.26

Commits

Updates serde from 1.0.217 to 1.0.218

Release notes

Sourced from serde's releases.

v1.0.218

  • Documentation improvements
Commits
  • 7bfd518 Release 1.0.218
  • 723a949 Merge pull request #2895 from dtolnay/stabledoc
  • 2b44efb Point standard library links to stable
  • 03dc0fc Merge pull request #2894 from dtolnay/doclink
  • 85cb0c4 Convert html links to intra-doc links
  • abe7194 Update ui test suite to nightly-2025-02-12
  • aaccac7 Unset doc-scrape-examples for lib target
  • 7cd4d84 Update ui test suite to nightly-2025-02-07
  • 04ff3e8 More precise gitignore patterns
  • dc3031b Remove *.sw[po] from gitignore
  • Additional commits viewable in compare view

Updates thiserror from 2.0.11 to 2.0.12

Release notes

Sourced from thiserror's releases.

2.0.12

  • Prevent elidable_lifetime_names pedantic clippy lint in generated impl (#413)
Commits
  • 95a5126 Release 2.0.12
  • 76490f7 Merge pull request #413 from dtolnay/elidablelifetime
  • 9f27b76 Ignore elidable_lifetime_names pedantic clippy lint
  • daf2a6f Resolve some elidable_lifetime_names pedantic clippy lint
  • 5f07160 Point standard library links to stable
  • 6706a51 Convert html links to intra-doc links
  • 2706873 More precise gitignore patterns
  • 70bc20d Remove **/*.rs.bk from project-specific gitignore
  • See full diff in compare view

Updates linkme from 0.3.31 to 0.3.32

Release notes

Sourced from linkme's releases.

0.3.32

  • Documentation improvements
Commits
  • ee2a7d4 Release 0.3.32
  • 1d7c082 Update ui test suite to nightly-2025-03-02
  • 78a1e60 Point standard library links to stable
  • ead19cc Unset doc-scrape-examples for lib target
  • 9fdb508 Fix Windows job RUSTFLAGS values
  • 750a243 Ignore Windows linker warning
  • 6dd5b9c More precise gitignore patterns
  • 9bc5a1d Remove **/*.rs.bk from project-specific gitignore
  • See full diff in compare view

Updates serde_json from 1.0.138 to 1.0.140

Release notes

Sourced from serde_json's releases.

v1.0.140

  • Documentation improvements

v1.0.139

  • Documentation improvements
Commits
  • 7627834 Release 1.0.140
  • d77a498 Merge pull request #1245 from serde-rs/powerpc
  • b34d317 Delete unused gcc installation
  • f7200c3 Ignore unbuffered_bytes clippy lint
  • 76cd4fb Ignore elidable_lifetime_names pedantic clippy lint
  • 400eaa9 Point standard library links to stable
  • 4d4f53c Release 1.0.139
  • 5d6b32f Merge pull request #1242 from dtolnay/writefloat
  • e5bb8bd Document behavior of write_f32/f64 on non-finite floats
  • 7a79781 Merge pull request #1241 from dtolnay/doclink
  • Additional commits viewable in compare view

Updates either from 1.13.0 to 1.14.0

Commits
  • 6e6dc26 Merge pull request #117 from cuviper/release-1.14.0
  • 9376206 Release 1.14.0
  • 4db2c30 Merge pull request #118 from cuviper/clippy
  • 81671a6 Fix clippy::empty_line_after_doc_comments
  • 1902eb1 Fix clippy::from_over_into
  • ce345c6 Merge pull request #116 from yotamofek/use-macros
  • 995ad50 Use for_both! and map_either! in more places
  • b0d533a Merge pull request #115 from yotamofek/simplify-patterns
  • a91fefd Merge pull request #114 from yotamofek/msrv
  • 7972b74 Upgrade to 2021 edition
  • Additional commits viewable in compare view

Updates proc-macro2 from 1.0.93 to 1.0.94

Release notes

Sourced from proc-macro2's releases.

1.0.94

  • Documentation improvements
Commits
  • 7cb0f3c Release 1.0.94
  • 23c425c Raise minimum tested compiler to rust 1.67
  • cbffe0c Ignore elidable_lifetime_names pedantic clippy lint
  • a12fe8b Point standard library links to stable
  • 36920b1 Combine rustdoc semver exempt cfg into one argument
  • 3a9bc71 Convert html links to intra-doc links
  • c7d999c Unset doc-scrape-examples for lib target
  • 020a8ae Resolve unnecessary_semicolon pedantic clippy lint
  • 0a77455 Ignore WebAssembly linker warning
  • ffc417a More precise gitignore patterns
  • Additional commits viewable in compare view

Updates quote from 1.0.38 to 1.0.39

Release notes

Sourced from quote's releases.

1.0.39

  • Documentation improvements
Commits
  • 7d089f5 Release 1.0.39
  • dd15f29 Ignore elidable_lifetime_names pedantic clippy lint
  • b723616 Point standard library links to stable
  • ddbabd5 Convert html links to intra-doc links
  • fa46189 Unset doc-scrape-examples for lib target
  • 4d071e3 Resolve doc_overindented_list_items clippy lint
  • 908ddbd More precise gitignore patterns
  • See full diff in compare view

Updates syn from 2.0.98 to 2.0.99

Release notes

Sourced from syn's releases.

2.0.99

  • Documentation improvements
Commits
  • 4552057 Release 2.0.99
  • f4d8f0e Ignore elidable_lifetime_names pedantic clippy lint
  • afbee2e Point standard library links to stable
  • fdbed64 Merge pull request #1848 from findepi/findepi/remove-obsolete-clippy-suppress...
  • 88f0820 Remove obsolete clippy suppressions
  • 5357d54 Update test suite to nightly-2025-02-13
  • 5cffd62 Update color-backtrace dependency to 0.7
  • 076ac95 Unset doc-scrape-examples for lib target
  • af12bda Ignore format_push_string pedantic clippy lint
  • f3614ce Update test suite to nightly-2025-02-07
  • Additional commits viewable in compare view

Updates convert_case from 0.7.1 to 0.8.0

Commits

Updates embed-resource from 3.0.1 to 3.0.2

Commits

Updates zip from 2.2.2 to 2.2.3

Release notes

Sourced from zip's releases.

v2.2.3

🚜 Refactor

  • Change the inner structure of DateTime (#267)

⚙️ Miscellaneous Tasks

  • cargo fix --edition
Changelog

Sourced from zip's changelog.

2.2.3 - 2025-02-26

🚜 Refactor

  • Change the inner structure of DateTime (#267)

⚙️ Miscellaneous Tasks

  • cargo fix --edition
Commits
  • 57cb3a8 chore: release v2.2.3 (#297)
  • 3e78ee1 Update CI (#298)
  • 266826a test(fuzz): fuzz_read no longer uses replace_with
  • 9d9234a doc: remove out-of-date security-advisories folder (#294)
  • 55e1ae4 ci(fuzz): Update cargo-afl
  • 7a85a0d Revert "chore: cargo fix --edition"
  • 1e6352b style: Fix clippy warnings
  • 30ec0b7 chore: cargo fix --edition
  • 7c20fa3 ci(deps): bump actions/attest-build-provenance from 1 to 2 (#268)
  • 2e1da0d chore(deps): update bzip2 requirement from 0.4.3 to 0.5.0 (#269)
  • Additional commits viewable in compare view

Updates insta from 1.42.1 to 1.42.2

Release notes

Sourced from insta's releases.

1.42.2

Release Notes

  • Support other indention characters than spaces in inline snapshots. #679
  • Fix an issue where multiple targets with the same root would cause too many pending snapshots to be reported. #730
  • Hide unseen option in CLI, as it's pending deprecation. #732
  • Stop \t and \x1b (ANSI color escape) from causing snapshots to be escaped. #715
  • Improved handling of inline snapshots within allow_duplicates! { .. }. #712

Install cargo-insta 1.42.2

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/mitsuhiko/insta/releases/download/1.42.2/cargo-insta-installer.sh | sh

Install prebuilt binaries via powershell script

powershell -ExecutionPolicy ByPass -c "irm https://github.com/mitsuhiko/insta/releases/download/1.42.2/cargo-insta-installer.ps1 | iex"

Download cargo-insta 1.42.2

File Platform Checksum
cargo-insta-aarch64-apple-darwin.tar.xz Apple Silicon macOS checksum
cargo-insta-x86_64-apple-darwin.tar.xz Intel macOS checksum
cargo-insta-x86_64-pc-windows-msvc.zip x64 Windows checksum
cargo-insta-x86_64-unknown-linux-gnu.tar.xz x64 Linux checksum
cargo-insta-x86_64-unknown-linux-musl.tar.xz x64 MUSL Linux checksum
Changelog

Sourced from insta's changelog.

1.42.2

  • Support other indention characters than spaces in inline snapshots. #679
  • Fix an issue where multiple targets with the same root would cause too many pending snapshots to be reported. #730
  • Hide unseen option in CLI, as it's pending deprecation. #732
  • Stop \t and \x1b (ANSI color escape) from causing snapshots to be escaped. #715
  • Improved handling of inline snapshots within allow_duplicates! { .. }. #712
Commits
  • e81bae9 Bump versions to 1.42.2 (#733)
  • df78d98 Hide unseen from --help (#732)
  • 7a5e938 Fix duplicate snapshots on multiple targets with identical roots (#730)
  • b72bfba Improve functional test docs (#731)
  • e6469ac Qualify all references in macros to avoid name clashes (#729)
  • b6ecee1 Add changelog for INSTA_WORKSPACE_ROOT at compile time (#727)
  • ef4703f Allow setting INSTA_WORKSPACE_ROOT at compile time (#726)
  • 04a98c3 Fix inline snapshot handling within allow_duplicates! block (#722)
  • 24f32aa Fix crash on scanning indentation of arbitrary lines (#723)
  • 759283e [ISSUE-718] Allow specifying cargo-nextest bin (#721)
  • Additional commits viewable in compare view

Updates bzip2 from 0.5.1 to 0.5.2

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes...

Description has been truncated

…dates

Bumps the cargo-minor group with 20 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [clap](https://github.com/clap-rs/clap) | `4.5.30` | `4.5.31` |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.95` | `1.0.97` |
| [bitflags](https://github.com/bitflags/bitflags) | `2.8.0` | `2.9.0` |
| [bytemuck](https://github.com/Lokathor/bytemuck) | `1.21.0` | `1.22.0` |
| [chrono](https://github.com/chronotope/chrono) | `0.4.39` | `0.4.40` |
| [flate2](https://github.com/rust-lang/flate2-rs) | `1.0.35` | `1.1.0` |
| [log](https://github.com/rust-lang/log) | `0.4.25` | `0.4.26` |
| [serde](https://github.com/serde-rs/serde) | `1.0.217` | `1.0.218` |
| [thiserror](https://github.com/dtolnay/thiserror) | `2.0.11` | `2.0.12` |
| [linkme](https://github.com/dtolnay/linkme) | `0.3.31` | `0.3.32` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.138` | `1.0.140` |
| [either](https://github.com/rayon-rs/either) | `1.13.0` | `1.14.0` |
| [proc-macro2](https://github.com/dtolnay/proc-macro2) | `1.0.93` | `1.0.94` |
| [quote](https://github.com/dtolnay/quote) | `1.0.38` | `1.0.39` |
| [syn](https://github.com/dtolnay/syn) | `2.0.98` | `2.0.99` |
| [convert_case](https://github.com/rutrum/convert-case) | `0.7.1` | `0.8.0` |
| [embed-resource](https://github.com/nabijaczleweli/rust-embed-resource) | `3.0.1` | `3.0.2` |
| [zip](https://github.com/zip-rs/zip2) | `2.2.2` | `2.2.3` |
| [insta](https://github.com/mitsuhiko/insta) | `1.42.1` | `1.42.2` |
| [bzip2](https://github.com/trifectatechfoundation/bzip2-rs) | `0.5.1` | `0.5.2` |



Updates `clap` from 4.5.30 to 4.5.31
- [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.30...v4.5.31)

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

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

Updates `bytemuck` from 1.21.0 to 1.22.0
- [Changelog](https://github.com/Lokathor/bytemuck/blob/main/changelog.md)
- [Commits](Lokathor/bytemuck@v1.21.0...v1.22.0)

Updates `chrono` from 0.4.39 to 0.4.40
- [Release notes](https://github.com/chronotope/chrono/releases)
- [Changelog](https://github.com/chronotope/chrono/blob/main/CHANGELOG.md)
- [Commits](chronotope/chrono@v0.4.39...v0.4.40)

Updates `flate2` from 1.0.35 to 1.1.0
- [Release notes](https://github.com/rust-lang/flate2-rs/releases)
- [Changelog](https://github.com/rust-lang/flate2-rs/blob/main/CHANGELOG.md)
- [Commits](rust-lang/flate2-rs@1.0.35...1.1.0)

Updates `log` from 0.4.25 to 0.4.26
- [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.25...0.4.26)

Updates `serde` from 1.0.217 to 1.0.218
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.217...v1.0.218)

Updates `thiserror` from 2.0.11 to 2.0.12
- [Release notes](https://github.com/dtolnay/thiserror/releases)
- [Commits](dtolnay/thiserror@2.0.11...2.0.12)

Updates `linkme` from 0.3.31 to 0.3.32
- [Release notes](https://github.com/dtolnay/linkme/releases)
- [Commits](dtolnay/linkme@0.3.31...0.3.32)

Updates `serde_json` from 1.0.138 to 1.0.140
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.138...v1.0.140)

Updates `either` from 1.13.0 to 1.14.0
- [Commits](rayon-rs/either@1.13.0...1.14.0)

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

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

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

Updates `convert_case` from 0.7.1 to 0.8.0
- [Commits](https://github.com/rutrum/convert-case/commits)

Updates `embed-resource` from 3.0.1 to 3.0.2
- [Release notes](https://github.com/nabijaczleweli/rust-embed-resource/releases)
- [Commits](nabijaczleweli/rust-embed-resource@v3.0.1...v3.0.2)

Updates `zip` from 2.2.2 to 2.2.3
- [Release notes](https://github.com/zip-rs/zip2/releases)
- [Changelog](https://github.com/zip-rs/zip2/blob/master/CHANGELOG.md)
- [Commits](zip-rs/zip2@v2.2.2...v2.2.3)

Updates `insta` from 1.42.1 to 1.42.2
- [Release notes](https://github.com/mitsuhiko/insta/releases)
- [Changelog](https://github.com/mitsuhiko/insta/blob/master/CHANGELOG.md)
- [Commits](mitsuhiko/insta@1.42.1...1.42.2)

Updates `bzip2` from 0.5.1 to 0.5.2
- [Release notes](https://github.com/trifectatechfoundation/bzip2-rs/releases)
- [Commits](trifectatechfoundation/bzip2-rs@v0.5.1...v0.5.2)

---
updated-dependencies:
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor
- dependency-name: anyhow
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor
- dependency-name: bitflags
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-minor
- dependency-name: bytemuck
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-minor
- dependency-name: chrono
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor
- dependency-name: flate2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-minor
- dependency-name: log
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor
- dependency-name: thiserror
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor
- dependency-name: linkme
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor
- dependency-name: serde_json
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor
- dependency-name: either
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-minor
- dependency-name: proc-macro2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor
- dependency-name: quote
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor
- dependency-name: syn
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor
- dependency-name: convert_case
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-minor
- dependency-name: embed-resource
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor
- dependency-name: zip
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor
- dependency-name: insta
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor
- dependency-name: bzip2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added A-deps Area: Dependencies T-chore Type: Chore (like updating a dependency, it's gotta be done) labels Mar 3, 2025
@torokati44 torokati44 enabled auto-merge (rebase) March 3, 2025 21:45
@torokati44 torokati44 merged commit 950f3fe into master Mar 3, 2025
22 checks passed
@dependabot dependabot bot deleted the dependabot/cargo/cargo-minor-7feadd0042 branch March 3, 2025 21:46
@torokati44
Copy link
Member

@dependabot unignore ashpd

Copy link
Contributor Author

dependabot bot commented on behalf of github Mar 3, 2025

OK, I will stop ignoring the ashpd dependency.

Copy link
Contributor Author

dependabot bot commented on behalf of github Mar 3, 2025

Looks like this PR has already been merged. If you've moved back to an older version of these dependencies a new PR will be created next time Dependabot checks your dependencies.

@torokati44
Copy link
Member

@dependabot unignore tempfile

Copy link
Contributor Author

dependabot bot commented on behalf of github Mar 3, 2025

OK, I will stop ignoring the tempfile dependency.

Copy link
Contributor Author

dependabot bot commented on behalf of github Mar 3, 2025

Looks like this PR has already been merged. If you've moved back to an older version of these dependencies a new PR will be created next time Dependabot checks your dependencies.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-deps Area: Dependencies T-chore Type: Chore (like updating a dependency, it's gotta be done)
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant