1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 11:37:44 +00:00

Merge pull request #3403 from uutils/dependabot/cargo/remove_dir_all-0.7.0

build(deps): bump remove_dir_all from 0.5.3 to 0.7.0
This commit is contained in:
Sylvestre Ledru 2022-04-21 21:32:23 +02:00 committed by GitHub
commit f684162e21
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 18 additions and 3 deletions

17
Cargo.lock generated
View file

@ -1601,6 +1601,19 @@ dependencies = [
"winapi 0.3.9", "winapi 0.3.9",
] ]
[[package]]
name = "remove_dir_all"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "882f368737489ea543bc5c340e6f3d34a28c39980bd9a979e47322b26f60ac40"
dependencies = [
"libc",
"log",
"num_cpus",
"rayon",
"winapi 0.3.9",
]
[[package]] [[package]]
name = "retain_mut" name = "retain_mut"
version = "0.1.2" version = "0.1.2"
@ -1839,7 +1852,7 @@ dependencies = [
"fastrand", "fastrand",
"libc", "libc",
"redox_syscall", "redox_syscall",
"remove_dir_all", "remove_dir_all 0.5.3",
"winapi 0.3.9", "winapi 0.3.9",
] ]
@ -2674,7 +2687,7 @@ name = "uu_rm"
version = "0.0.13" version = "0.0.13"
dependencies = [ dependencies = [
"clap 3.1.8", "clap 3.1.8",
"remove_dir_all", "remove_dir_all 0.7.0",
"uucore", "uucore",
"walkdir", "walkdir",
"winapi 0.3.9", "winapi 0.3.9",

View file

@ -76,6 +76,8 @@ skip = [
{ name = "cpp_common", version = "=0.4.0" }, { name = "cpp_common", version = "=0.4.0" },
# quickcheck # quickcheck
{ name = "env_logger", version = "=0.8.4" }, { name = "env_logger", version = "=0.8.4" },
# tempfile
{ name = "remove_dir_all", version = "=0.5.3" },
# cpp_* # cpp_*
{ name = "memchr", version = "=1.0.2" }, { name = "memchr", version = "=1.0.2" },
{ name = "quote", version = "=0.3.15" }, { name = "quote", version = "=0.3.15" },

View file

@ -17,7 +17,7 @@ path = "src/rm.rs"
[dependencies] [dependencies]
clap = { version = "3.1", features = ["wrap_help", "cargo"] } clap = { version = "3.1", features = ["wrap_help", "cargo"] }
walkdir = "2.2" walkdir = "2.2"
remove_dir_all = "0.5.1" remove_dir_all = "0.7.0"
uucore = { version=">=0.0.11", package="uucore", path="../../uucore", features=["fs"] } uucore = { version=">=0.0.11", package="uucore", path="../../uucore", features=["fs"] }
[target.'cfg(windows)'.dependencies] [target.'cfg(windows)'.dependencies]