mirror of
https://github.com/uutils/coreutils.git
synced 2025-07-07 13:35:00 +00:00
25 lines
635 B
TOML
25 lines
635 B
TOML
[package]
|
|
name = "uu_shred"
|
|
version = "0.0.19"
|
|
authors = ["uutils developers"]
|
|
license = "MIT"
|
|
description = "shred ~ (uutils) hide former FILE contents with repeated overwrites"
|
|
|
|
homepage = "https://github.com/uutils/coreutils"
|
|
repository = "https://github.com/uutils/coreutils/tree/main/src/uu/shred"
|
|
keywords = ["coreutils", "uutils", "cross-platform", "cli", "utility"]
|
|
categories = ["command-line-utilities"]
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
path = "src/shred.rs"
|
|
|
|
[dependencies]
|
|
clap = { workspace = true }
|
|
rand = { workspace = true }
|
|
uucore = { workspace = true }
|
|
libc = { workspace = true }
|
|
|
|
[[bin]]
|
|
name = "shred"
|
|
path = "src/main.rs"
|