mirror of
https://github.com/bootandy/dust.git
synced 2025-12-12 23:59:58 -08:00
Compare commits
2 Commits
clean_test
...
v0.8.0
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e6d433ba59 | ||
|
|
e87534be59 |
2
Cargo.lock
generated
2
Cargo.lock
generated
@@ -148,7 +148,7 @@ checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "du-dust"
|
name = "du-dust"
|
||||||
version = "0.7.5"
|
version = "0.8.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"ansi_term",
|
"ansi_term",
|
||||||
"assert_cmd",
|
"assert_cmd",
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "du-dust"
|
name = "du-dust"
|
||||||
description = "A more intuitive version of du"
|
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>"]
|
authors = ["bootandy <bootandy@gmail.com>", "nebkor <code@ardent.nebcorp.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
|||||||
@@ -189,7 +189,7 @@ fn main() {
|
|||||||
.conflicts_with("filter")
|
.conflicts_with("filter")
|
||||||
.conflicts_with("types")
|
.conflicts_with("types")
|
||||||
.conflicts_with("depth")
|
.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(
|
||||||
Arg::new("filter")
|
Arg::new("filter")
|
||||||
@@ -200,7 +200,7 @@ fn main() {
|
|||||||
.multiple_occurrences(true)
|
.multiple_occurrences(true)
|
||||||
.conflicts_with("types")
|
.conflicts_with("types")
|
||||||
.conflicts_with("depth")
|
.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(
|
||||||
Arg::new("types")
|
Arg::new("types")
|
||||||
|
|||||||
Reference in New Issue
Block a user