33 lines
857 B
TOML
33 lines
857 B
TOML
[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/Apache-2.0"
|
|
name = "remove_dir_all"
|
|
readme = "README.md"
|
|
repository = "https://github.com/XAMPPRocky/remove_dir_all.git"
|
|
version = "0.7.1-alpha.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"]}
|
|
|
|
[target.'cfg(not(windows))'.dependencies]
|
|
libc = "0.2"
|
|
|
|
[dev-dependencies]
|
|
doc-comment = "0.3"
|
|
env_logger = "0.8.1"
|
|
tempfile = "3.1"
|