Bump remove_dir_all from 0.7.0 to 0.8.0

Bumps [remove_dir_all](https://github.com/XAMPPRocky/remove_dir_all) from 0.7.0 to 0.8.0.
- [Release notes](https://github.com/XAMPPRocky/remove_dir_all/releases)
- [Changelog](https://github.com/XAMPPRocky/remove_dir_all/blob/master/CHANGELOG.md)
- [Commits](https://github.com/XAMPPRocky/remove_dir_all/compare/v0.7.0...remove_dir_all@0.8.0)

---
updated-dependencies:
- dependency-name: remove_dir_all
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot] 2023-03-13 13:50:52 +00:00 committed by GitHub
parent 477d903df4
commit 01ea34965d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 101 additions and 12 deletions

107
Cargo.lock generated
View file

@ -79,6 +79,15 @@ dependencies = [
"memchr",
]
[[package]]
name = "aligned"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "80a21b9440a626c7fc8573a9e3d3a06b75c7c97754c2949bc7857b90353ca655"
dependencies = [
"as-slice",
]
[[package]]
name = "ansi_term"
version = "0.11.0"
@ -134,6 +143,15 @@ version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b"
[[package]]
name = "as-slice"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "516b6b4f0e40d50dcda9365d53964ec74560ad4284da2e7fc97122cd83174516"
dependencies = [
"stable_deref_trait",
]
[[package]]
name = "atty"
version = "0.2.14"
@ -732,6 +750,15 @@ dependencies = [
"zeroize",
]
[[package]]
name = "cvt"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "34ac344c7efccb80cd25bc61b2170aec26f2f693fd40e765a539a1243db48c71"
dependencies = [
"cfg-if 0.1.10",
]
[[package]]
name = "dashmap"
version = "5.3.4"
@ -1075,6 +1102,21 @@ dependencies = [
"percent-encoding",
]
[[package]]
name = "fs_at"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3dfc546714a30e1e1f2eb5e1d233a6c1254c4a3d25ac35c09743e824a39d35e"
dependencies = [
"aligned",
"cfg-if 1.0.0",
"cvt",
"libc",
"nix 0.26.2",
"smart-default",
"windows-sys 0.45.0",
]
[[package]]
name = "fuchsia-cprng"
version = "0.1.1"
@ -1483,7 +1525,7 @@ dependencies = [
"linefeed",
"log",
"prettytable-rs",
"remove_dir_all 0.7.0",
"remove_dir_all 0.8.0",
"rpassword",
"rustyline",
"semver 0.10.0",
@ -1558,7 +1600,7 @@ dependencies = [
"prettytable-rs",
"qr_code",
"rand 0.7.3",
"remove_dir_all 0.7.0",
"remove_dir_all 0.8.0",
"ring",
"serde",
"serde_derive",
@ -1594,7 +1636,7 @@ dependencies = [
"log",
"rand 0.6.5",
"regex",
"remove_dir_all 0.7.0",
"remove_dir_all 0.8.0",
"reqwest",
"ring",
"serde",
@ -2445,6 +2487,18 @@ dependencies = [
"memoffset",
]
[[package]]
name = "nix"
version = "0.26.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bfdda3d196821d6af13126e40375cdf7da646a96114af134d5f417a9a1dc8e1a"
dependencies = [
"bitflags 1.3.2",
"cfg-if 1.0.0",
"libc",
"static_assertions",
]
[[package]]
name = "nodrop"
version = "0.1.14"
@ -2471,6 +2525,15 @@ dependencies = [
"minimal-lexical",
]
[[package]]
name = "normpath"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "972dec05f98e7c787ede35d7a9ea4735eb7788c299287352757b3def6cc1f7b5"
dependencies = [
"windows-sys 0.45.0",
]
[[package]]
name = "ntapi"
version = "0.3.7"
@ -3265,15 +3328,18 @@ dependencies = [
[[package]]
name = "remove_dir_all"
version = "0.7.0"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "882f368737489ea543bc5c340e6f3d34a28c39980bd9a979e47322b26f60ac40"
checksum = "a22f9ad631d4eaa04be5a9cbb7bd64fa897f46800d623f0b54b12e7cf0238ffe"
dependencies = [
"aligned",
"cfg-if 1.0.0",
"cvt",
"fs_at",
"lazy_static",
"libc",
"log",
"num_cpus",
"rayon",
"winapi 0.3.9",
"normpath",
"windows-sys 0.45.0",
]
[[package]]
@ -3821,6 +3887,17 @@ version = "1.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2fd0db749597d91ff862fd1d55ea87f7855a744a8425a64695b6fca237d1dad1"
[[package]]
name = "smart-default"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "133659a15339456eeeb07572eb02a91c91e9815e9cbc89566944d2c8d3efdbf6"
dependencies = [
"proc-macro2 1.0.42",
"quote 1.0.20",
"syn 1.0.98",
]
[[package]]
name = "socket2"
version = "0.3.19"
@ -3838,6 +3915,18 @@ version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
[[package]]
name = "stable_deref_trait"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
[[package]]
name = "static_assertions"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
[[package]]
name = "strsim"
version = "0.8.0"

View file

@ -75,5 +75,5 @@ url = "2.1"
serde = "1"
serde_derive = "1"
serde_json = "1"
remove_dir_all = "0.7"
remove_dir_all = "0.8"
easy-jsonrpc-mw = "0.5.4"

View file

@ -67,7 +67,7 @@ grin_wallet_config = { path = "../config", version = "5.2.0-alpha.1" }
[dev-dependencies]
ed25519-dalek = "1.0.0-pre.4"
remove_dir_all = "0.7"
remove_dir_all = "0.8"
##### Grin Imports

View file

@ -78,4 +78,4 @@ grin_wallet_libwallet = { path = "../libwallet", version = "5.2.0-alpha.1" }
#####
[dev-dependencies]
"remove_dir_all" = "0.7"
"remove_dir_all" = "0.8"