[package] name = "uu_rm" version = "0.0.28" authors = ["uutils developers"] license = "MIT" description = "rm ~ (uutils) remove PATHNAME" homepage = "https://github.com/uutils/coreutils" repository = "https://github.com/uutils/coreutils/tree/main/src/uu/rm" keywords = ["coreutils", "uutils", "cross-platform", "cli", "utility"] categories = ["command-line-utilities"] edition = "2021" readme.workspace = true [lib] path = "src/rm.rs" [dependencies] clap = { workspace = true } walkdir = { workspace = true } uucore = { workspace = true, features = ["fs"] } [target.'cfg(unix)'.dependencies] libc = { workspace = true } [target.'cfg(windows)'.dependencies] windows-sys = { workspace = true, features = ["Win32_Storage_FileSystem"] } [[bin]] name = "rm" path = "src/main.rs"