//! A library primarily providing an interface to create temporary directories and files.
//!
//! It also provides several features:
//! - `rand_gen` : Support for randomly generated file and directory names.
//! - `mmap_support` : Support for memory mapping temporary files with memmap2.
//! - `regex_support` : Support for searching temporary directory's contained files using regex.
//! - `virt_fs` : Provides a virtual, in-memory filesystem with files, directories, permissions, metadata, and generally mimics a Linux filesystem.
//! `display_files` : Allows Displaying `TempFile` and `VirtFile`.
//! - `full` : Enables all of the above.
/// Errors which can occur when using the types provided by tempfs.
/// Global constants for the program.
/// Module providing temporary directories.
/// Module providing temporary files.
/// Helpers for `temp_file` and `temp_dir`.
/// Module providing a virtual unix-like filesystem.
pub use *;
pub use TempDir;
pub use TempFile;
pub use *;