1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
[package]
authors = [
"Erin P. <xampprocky@gmail.com>",
"Robert C. <robertc@robertcollins.net>",
]
categories = ["filesystem"]
description = "A safe, reliable implementation of remove_dir_all for Windows"
edition = "2018"
include = [
"Cargo.toml",
"LICENCE-APACHE",
"LICENCE-MIT",
"src/**/*",
"README.md",
]
keywords = ["utility", "filesystem", "remove_dir", "windows"]
license = "MIT OR Apache-2.0"
name = "remove_dir_all"
readme = "README.md"
repository = "https://github.com/XAMPPRocky/remove_dir_all.git"
version = "0.8.2"
[features]
cli = ["dep:clap", "dep:env_logger", "log", "parallel"]
default = []
log = ["dep:log"]
parallel = ["dep:rayon"]
[[bin]]
name = "remove-dir-all"
required-features = ["cli"]
[dependencies]
cfg-if = "1.0.0"
clap = { version = "4.1.11", optional = true, features = ["derive"] }
env_logger = { version = "0.10.0", optional = true }
fs_at = { version = "0.1.4" }
lazy_static = "1.4.0"
log = { version = "0.4.11", optional = true }
normpath = "1.0.1"
rayon = { version = "1.4", optional = true }
[target.'cfg(windows)'.dependencies]
aligned = "0.4.1"
[target.'cfg(windows)'.dependencies.windows-sys]
features = [
"Win32_Foundation",
"Win32_Storage_FileSystem",
"Win32_System_IO",
"Win32_System_Ioctl",
"Win32_System_SystemServices",
"Win32_System_Threading",
]
version = "0.45.0"
[target.'cfg(not(windows))'.dependencies]
cvt = "0.1.1"
libc = "0.2"
[dev-dependencies]
doc-comment = "0.3"
env_logger = "0.10.0"
log = "0.4.11"
tempfile = "3.1"
test-log = "0.2"
|