The package helps to create temporary files and directories.
```rust use temporary::Directory;
let directory = Directory::new("foo").unwrap(); assert!(std::fs::metadata(directory).is_ok()); // Exists? Yes! ```
The package was originally based on std::io::TempDir
by Rust’s developers,
which was later moved to a separate crate,
tempdir.