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:
commit
f684162e21
3 changed files with 18 additions and 3 deletions
17
Cargo.lock
generated
17
Cargo.lock
generated
|
@ -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",
|
||||||
|
|
|
@ -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" },
|
||||||
|
|
|
@ -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]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue