[package] name = "secure_purge" version = "0.1.0" edition = "2021" license = "MIT" description = "SecurePurge is a crate for securely deleting files by overwriting their data multiple times. It is easy to use, supports removing single files, directories, and multiple files with unique names, and allows customization of overwrite times. The tool relies on dependencies like indicatif for progress bars, rand for generating random overwrite data, and colored for output readability. SecurePurge is open-source and welcomes contributions. Future enhancements include adding disk formatting and optimizing performance. It is licensed under the MIT License. Stay tuned for more updates." # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] clap = { version = "4.4.18", features = ["derive"] } indicatif = "0.17.7" rand = "0.8.5" colored = "2.1.0"