From 0ac4a2c514aeb94d8e90ce28ae7a0e0350c21ab2 Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Tue, 20 Sep 2022 09:45:05 +0800 Subject: [PATCH] upgrade to prodash 20.1 for `Progress::counter()` feature (#470) --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- git-features/Cargo.toml | 2 +- src/porcelain/options.rs | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 51e4d975db..9fb5ea4068 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2534,9 +2534,9 @@ dependencies = [ [[package]] name = "prodash" -version = "20.0.0" +version = "20.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "65ae8c4c227abf4616b5819a60cf72b34c5c2541581f916c174ec2b2c1566da0" +checksum = "477ce81c3e71b6005714157c54797ff4d84b5aa21d21e160fb9f1eeed936c931" dependencies = [ "async-io", "atty", diff --git a/Cargo.toml b/Cargo.toml index fc82ce0ad0..df224c9450 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -86,7 +86,7 @@ git-repository = { version = "^0.24.0", path = "git-repository", default-feature git-transport-for-configuration-only = { package = "git-transport", optional = true, version = "^0.20.0", path = "git-transport" } clap = { version = "3.2.5", features = ["derive", "cargo"] } -prodash = { version = "20.0.0", optional = true, default-features = false } +prodash = { version = "20.1.0", optional = true, default-features = false } atty = { version = "0.2.14", optional = true, default-features = false } env_logger = { version = "0.9.0", default-features = false } crosstermion = { version = "0.10.1", optional = true, default-features = false } diff --git a/git-features/Cargo.toml b/git-features/Cargo.toml index b91ea4d538..d221cd3d81 100644 --- a/git-features/Cargo.toml +++ b/git-features/Cargo.toml @@ -115,7 +115,7 @@ crc32fast = { version = "1.2.1", optional = true } sha1 = { version = "0.10.0", optional = true } # progress -prodash = { version = "20.0.0", optional = true, default-features = false, features = ["unit-bytes", "unit-human"] } +prodash = { version = "20.1.0", optional = true, default-features = false, features = ["unit-bytes", "unit-human"] } # pipe bytes = { version = "1.0.0", optional = true } diff --git a/src/porcelain/options.rs b/src/porcelain/options.rs index 454d6eed4f..8d7e42012b 100644 --- a/src/porcelain/options.rs +++ b/src/porcelain/options.rs @@ -101,7 +101,7 @@ pub struct EstimateHours { /// Ignore github bots which match the `[bot]` search string. #[clap(short = 'b', long)] pub no_bots: bool, - /// Collect additional information like tree changes and changed lines. + /// Collect additional information about file modifications, additions and deletions. #[clap(short = 's', long)] pub stats: bool, /// Show personally identifiable information before the summary. Includes names and email addresses.