├── .github ├── dependabot.yml └── workflows │ ├── publish.yml │ └── rust.yml ├── .gitignore ├── CHANGELOG.md ├── Cargo.toml ├── LICENCE-APACHE ├── LICENCE-MIT ├── README.md ├── src ├── _impl.rs ├── _impl │ ├── io.rs │ ├── path_components.rs │ ├── unix.rs │ └── win.rs ├── bin │ └── remove-dir-all.rs └── lib.rs └── tests └── interface.rs /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/remove_dir_all/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/remove_dir_all/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/remove_dir_all/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/remove_dir_all/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/remove_dir_all/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENCE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/remove_dir_all/HEAD/LICENCE-APACHE -------------------------------------------------------------------------------- /LICENCE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/remove_dir_all/HEAD/LICENCE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/remove_dir_all/HEAD/README.md -------------------------------------------------------------------------------- /src/_impl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/remove_dir_all/HEAD/src/_impl.rs -------------------------------------------------------------------------------- /src/_impl/io.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/remove_dir_all/HEAD/src/_impl/io.rs -------------------------------------------------------------------------------- /src/_impl/path_components.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/remove_dir_all/HEAD/src/_impl/path_components.rs -------------------------------------------------------------------------------- /src/_impl/unix.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/remove_dir_all/HEAD/src/_impl/unix.rs -------------------------------------------------------------------------------- /src/_impl/win.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/remove_dir_all/HEAD/src/_impl/win.rs -------------------------------------------------------------------------------- /src/bin/remove-dir-all.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/remove_dir_all/HEAD/src/bin/remove-dir-all.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/remove_dir_all/HEAD/src/lib.rs -------------------------------------------------------------------------------- /tests/interface.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/remove_dir_all/HEAD/tests/interface.rs --------------------------------------------------------------------------------