From 0e3b3e214b9260356d69a86398a0facc4fb6075e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Oct 2025 13:41:37 +0000 Subject: [PATCH] chore(deps): bump the rust-dependencies group with 2 updates Bumps the rust-dependencies group with 2 updates: [indexmap](https://github.com/indexmap-rs/indexmap) and [clap](https://github.com/clap-rs/clap). Updates `indexmap` from 2.11.4 to 2.12.0 - [Changelog](https://github.com/indexmap-rs/indexmap/blob/main/RELEASES.md) - [Commits](https://github.com/indexmap-rs/indexmap/compare/2.11.4...2.12.0) Updates `clap` from 4.5.48 to 4.5.49 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.5.48...clap_complete-v4.5.49) --- updated-dependencies: - dependency-name: indexmap dependency-version: 2.12.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: rust-dependencies - dependency-name: clap dependency-version: 4.5.49 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: rust-dependencies ... Signed-off-by: dependabot[bot] --- Cargo.lock | 12 ++++++------ Cargo.toml | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 19110c15..6bcbe613 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -118,18 +118,18 @@ checksum = "2fd1289c04a9ea8cb22300a459a72a385d7c73d3259e2ed7dcb2af674838cfa9" [[package]] name = "clap" -version = "4.5.48" +version = "4.5.49" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2134bb3ea021b78629caa971416385309e0131b351b25e01dc16fb54e1b5fae" +checksum = "f4512b90fa68d3a9932cea5184017c5d200f5921df706d45e853537dea51508f" dependencies = [ "clap_builder", ] [[package]] name = "clap_builder" -version = "4.5.48" +version = "4.5.49" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c2ba64afa3c0a6df7fa517765e31314e983f51dda798ffba27b988194fb65dc9" +checksum = "0025e98baa12e766c67ba13ff4695a887a1eba19569aad00a472546795bd6730" dependencies = [ "anstream", "anstyle", @@ -306,9 +306,9 @@ dependencies = [ [[package]] name = "indexmap" -version = "2.11.4" +version = "2.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4b0f83760fb341a774ed326568e19f5a863af4a952def8c39f9ab92fd95b88e5" +checksum = "6717a8d2a5a929a1a2eb43a12812498ed141a0bcfb7e8f7844fbdbe4303bba9f" dependencies = [ "equivalent", "hashbrown", diff --git a/Cargo.toml b/Cargo.toml index 2024aeba..a1b27852 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,7 +40,7 @@ required-features = ["zopfli"] [dependencies] zopfli = { version = "0.8.2", optional = true, default-features = false, features = ["std", "zlib"] } rgb = "0.8.52" -indexmap = "2.11.4" +indexmap = "2.12.0" libdeflater = "1.24.0" log = "0.4.28" bitvec = "1.0.1" @@ -66,7 +66,7 @@ version = "1.11.0" [dependencies.clap] optional = true -version = "4.5.48" +version = "4.5.49" features = ["wrap_help"] [dependencies.parse-size]