1[package] 2authors = ["Erin P. <xampprocky@gmail.com>", "Robert C. <robertc@robertcollins.net>"] 3categories = ["filesystem"] 4description = "A safe, reliable implementation of remove_dir_all for Windows" 5edition = "2018" 6include = [ 7 "Cargo.toml", 8 "LICENCE-APACHE", 9 "LICENCE-MIT", 10 "src/**/*", 11 "README.md", 12] 13keywords = ["utility", "filesystem", "remove_dir", "windows"] 14license = "MIT/Apache-2.0" 15name = "remove_dir_all" 16readme = "README.md" 17repository = "https://github.com/XAMPPRocky/remove_dir_all.git" 18version = "0.7.1-alpha.0" 19 20[target.'cfg(windows)'.dependencies] 21log = "0.4.11" 22num_cpus = "1.13" 23rayon = "1.4" 24winapi = {version = "0.3", features = ["std", "errhandlingapi", "winerror", "fileapi", "winbase"]} 25 26[target.'cfg(not(windows))'.dependencies] 27libc = "0.2" 28 29[dev-dependencies] 30doc-comment = "0.3" 31env_logger = "0.8.1" 32tempfile = "3.1" 33