From 11a9690ad1d908447192b1acd1cfedbfa50e36db Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 Dec 2023 04:20:00 +0000 Subject: [PATCH] Bump the cargo group with 2 updates Bumps the cargo group with 2 updates: [clap](https://github.com/clap-rs/clap) and [tracing-indicatif](https://github.com/emersonford/tracing-indicatif). Updates `clap` from 4.4.8 to 4.4.11 - [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/v4.4.8...v4.4.11) Updates `tracing-indicatif` from 0.3.5 to 0.3.6 - [Release notes](https://github.com/emersonford/tracing-indicatif/releases) - [Changelog](https://github.com/emersonford/tracing-indicatif/blob/main/CHANGELOG.md) - [Commits](https://github.com/emersonford/tracing-indicatif/compare/0.3.5...0.3.6) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo - dependency-name: tracing-indicatif dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo ... Signed-off-by: dependabot[bot] --- Cargo.lock | 12 ++++++------ flac-tracksplit/Cargo.toml | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 836e36b..5aee48a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -130,9 +130,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "clap" -version = "4.4.8" +version = "4.4.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2275f18819641850fa26c89acc84d465c1bf91ce57bc2748b28c420473352f64" +checksum = "bfaff671f6b22ca62406885ece523383b9b64022e341e53e009a62ebc47a45f2" dependencies = [ "clap_builder", "clap_derive", @@ -140,9 +140,9 @@ dependencies = [ [[package]] name = "clap_builder" -version = "4.4.8" +version = "4.4.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "07cdf1b148b25c1e1f7a42225e30a0d99a615cd4637eae7365548dd4529b95bc" +checksum = "a216b506622bb1d316cd51328dce24e07bdff4a6128a47c7e7fad11878d5adbb" dependencies = [ "anstream", "anstyle", @@ -841,9 +841,9 @@ dependencies = [ [[package]] name = "tracing-indicatif" -version = "0.3.5" +version = "0.3.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "57e05fe4a1c906d94b275d8aeb8ff8b9deaca502aeb59ae8ab500a92b8032ac8" +checksum = "069580424efe11d97c3fef4197fa98c004fa26672cc71ad8770d224e23b1951d" dependencies = [ "indicatif", "tracing", diff --git a/flac-tracksplit/Cargo.toml b/flac-tracksplit/Cargo.toml index f33b60f..9941df5 100644 --- a/flac-tracksplit/Cargo.toml +++ b/flac-tracksplit/Cargo.toml @@ -19,7 +19,7 @@ maintenance = { status = "passively-maintained" } [dependencies] anyhow = "1.0.75" bytesize = { version = "1.3.0", features = ["serde"] } -clap = { version = "4.4.8", features = ["derive"] } +clap = { version = "4.4.11", features = ["derive"] } int-conv = "0.1.4" metaflac = "0.2.5" more-asserts = "0.3.1" @@ -28,7 +28,7 @@ symphonia-bundle-flac = "0.5.3" symphonia-core = "0.5.3" symphonia-utils-xiph = "0.5.2" tracing = "0.1.40" -tracing-indicatif = "0.3.5" +tracing-indicatif = "0.3.6" tracing-subscriber = { version = "0.3.18", features = ["env-filter"] } [dev-dependencies]