//! Reliably remove a directory and all of its children.
//!
//! This library provides a reliable implementation of `remove_dir_all` for Windows.
//! For Unix systems, it re-exports `std::fs::remove_dir_all`.
// See under "known problems" https://rust-lang.github.io/rust-clippy/master/index.html#mutex_atomic
extern crate doc_comment;
doctest!;
pub use remove_dir_all;
pub use remove_dir_all;