From e19010e9fe4708c83184e7256e1283f62521cc86 Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Sat, 12 Dec 2020 13:10:38 +0100 Subject: [PATCH] cosmetic: consistency in the walkdir cargo declaration --- Cargo.lock | 1 - src/uu/chgrp/Cargo.toml | 2 +- src/uu/cp/Cargo.toml | 2 +- src/uu/rm/Cargo.toml | 2 +- 4 files changed, 3 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3ce4ad288..955626985 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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)", diff --git a/src/uu/chgrp/Cargo.toml b/src/uu/chgrp/Cargo.toml index bd6194bf6..3a6d6b18d 100644 --- a/src/uu/chgrp/Cargo.toml +++ b/src/uu/chgrp/Cargo.toml @@ -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" diff --git a/src/uu/cp/Cargo.toml b/src/uu/cp/Cargo.toml index a060323d9..d387ccfec 100644 --- a/src/uu/cp/Cargo.toml +++ b/src/uu/cp/Cargo.toml @@ -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" diff --git a/src/uu/rm/Cargo.toml b/src/uu/rm/Cargo.toml index 8e455eef0..d7fa97428 100644 --- a/src/uu/rm/Cargo.toml +++ b/src/uu/rm/Cargo.toml @@ -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" }