summaryrefslogtreecommitdiff
path: root/vendor/remove_dir_all/README.md
diff options
context:
space:
mode:
authorValentin Popov <valentin@popov.link>2024-01-08 00:21:28 +0300
committerValentin Popov <valentin@popov.link>2024-01-08 00:21:28 +0300
commit1b6a04ca5504955c571d1c97504fb45ea0befee4 (patch)
tree7579f518b23313e8a9748a88ab6173d5e030b227 /vendor/remove_dir_all/README.md
parent5ecd8cf2cba827454317368b68571df0d13d7842 (diff)
downloadfparkan-1b6a04ca5504955c571d1c97504fb45ea0befee4.tar.xz
fparkan-1b6a04ca5504955c571d1c97504fb45ea0befee4.zip
Initial vendor packages
Signed-off-by: Valentin Popov <valentin@popov.link>
Diffstat (limited to 'vendor/remove_dir_all/README.md')
-rw-r--r--vendor/remove_dir_all/README.md20
1 files changed, 20 insertions, 0 deletions
diff --git a/vendor/remove_dir_all/README.md b/vendor/remove_dir_all/README.md
new file mode 100644
index 0000000..958d811
--- /dev/null
+++ b/vendor/remove_dir_all/README.md
@@ -0,0 +1,20 @@
+# remove_dir_all
+
+[![Latest Version](https://img.shields.io/crates/v/remove_dir_all.svg)](https://crates.io/crates/remove_dir_all)
+[![Docs](https://docs.rs/remove_dir_all/badge.svg)](https://docs.rs/remove_dir_all)
+[![License](https://img.shields.io/github/license/XAMPPRocky/remove_dir_all.svg)](https://github.com/XAMPPRocky/remove_dir_all)
+
+## Description
+
+A reliable implementation of `remove_dir_all` for Windows. For Unix systems
+re-exports `std::fs::remove_dir_all`.
+
+```rust,no_run
+extern crate remove_dir_all;
+
+use remove_dir_all::*;
+
+fn main() {
+ remove_dir_all("./temp/").unwrap();
+}
+```