1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 19:47:45 +00:00

cosmetic: consistency in the walkdir cargo declaration

This commit is contained in:
Sylvestre Ledru 2020-12-12 13:10:38 +01:00
parent d8e345df0a
commit e19010e9fe
4 changed files with 3 additions and 4 deletions

1
Cargo.lock generated
View file

@ -471,7 +471,6 @@ version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
"const_fn 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
"const_fn 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)",
"crossbeam-utils 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",

View file

@ -17,7 +17,7 @@ path = "src/chgrp.rs"
[dependencies]
uucore = { version=">=0.0.4", package="uucore", path="../../uucore", features=["entries", "fs"] }
uucore_procs = { version=">=0.0.4", package="uucore_procs", path="../../uucore_procs" }
walkdir = "2.2.8"
walkdir = "2.2"
[[bin]]
name = "chgrp"

View file

@ -25,7 +25,7 @@ libc = "0.2.42"
quick-error = "1.2.3"
uucore = { version=">=0.0.4", package="uucore", path="../../uucore", features=["fs"] }
uucore_procs = { version=">=0.0.4", package="uucore_procs", path="../../uucore_procs" }
walkdir = "2.2.8"
walkdir = "2.2"
[target.'cfg(target_os = "linux")'.dependencies]
ioctl-sys = "0.5.2"

View file

@ -16,7 +16,7 @@ path = "src/rm.rs"
[dependencies]
clap = "2.33"
walkdir = "2.2.8"
walkdir = "2.2"
remove_dir_all = "0.5.1"
uucore = { version=">=0.0.4", package="uucore", path="../../uucore" }
uucore_procs = { version=">=0.0.4", package="uucore_procs", path="../../uucore_procs" }