-
-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Nightly has richer IO error kinds, and the meaning of ErrorKind::Other has been changed, so we cannot use that anymore. Instead use raw OS errors.
- Loading branch information
1 parent
9b164ce
commit 8ccdc7c
Showing
4 changed files
with
86 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
[package] | ||
authors = ["Erin P. <[email protected]>", "Robert C. <[email protected]>"] | ||
authors = [ | ||
"Erin P. <[email protected]>", | ||
"Robert C. <[email protected]>", | ||
] | ||
categories = ["filesystem"] | ||
description = "A safe, reliable implementation of remove_dir_all for Windows" | ||
edition = "2018" | ||
|
@@ -17,11 +20,24 @@ readme = "README.md" | |
repository = "https://github.com/XAMPPRocky/remove_dir_all.git" | ||
version = "0.7.1-alpha.0" | ||
|
||
[features] | ||
default = [] | ||
nightly = [] | ||
|
||
[dependencies] | ||
cfg-if = "1.0.0" | ||
|
||
[target.'cfg(windows)'.dependencies] | ||
log = "0.4.11" | ||
num_cpus = "1.13" | ||
rayon = "1.4" | ||
winapi = {version = "0.3", features = ["std", "errhandlingapi", "winerror", "fileapi", "winbase"]} | ||
winapi = { version = "0.3", features = [ | ||
"std", | ||
"errhandlingapi", | ||
"winerror", | ||
"fileapi", | ||
"winbase", | ||
] } | ||
|
||
[target.'cfg(not(windows))'.dependencies] | ||
libc = "0.2" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters