Compare commits

...

2 Commits

Author SHA1 Message Date
andy.boot
e6d433ba59 Increment version 2022-02-26 11:34:24 +00:00
andy.boot
e87534be59 Improve help text 2022-02-26 11:34:24 +00:00
3 changed files with 4 additions and 4 deletions

2
Cargo.lock generated
View File

@@ -148,7 +148,7 @@ checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
[[package]]
name = "du-dust"
version = "0.7.5"
version = "0.8.0"
dependencies = [
"ansi_term",
"assert_cmd",

View File

@@ -1,7 +1,7 @@
[package]
name = "du-dust"
description = "A more intuitive version of du"
version = "0.7.5"
version = "0.8.0"
authors = ["bootandy <bootandy@gmail.com>", "nebkor <code@ardent.nebcorp.com>"]
edition = "2018"
readme = "README.md"

View File

@@ -189,7 +189,7 @@ fn main() {
.conflicts_with("filter")
.conflicts_with("types")
.conflicts_with("depth")
.help("Exclude files matching this regex. To ignore png files type: -v \"\\.png$\" "),
.help("Exclude filepaths matching this regex. To ignore png files type: -v \"\\.png$\" "),
)
.arg(
Arg::new("filter")
@@ -200,7 +200,7 @@ fn main() {
.multiple_occurrences(true)
.conflicts_with("types")
.conflicts_with("depth")
.help("Only include files matching this regex. For png files type: -e \"\\.png$\" "),
.help("Only include filepaths matching this regex. For png files type: -e \"\\.png$\" "),
)
.arg(
Arg::new("types")