mirror of
https://github.com/nivekuil/rip
synced 2024-11-10 06:04:17 +00:00
28 lines
No EOL
505 B
TOML
28 lines
No EOL
505 B
TOML
[package]
|
|
edition = '2018'
|
|
name = "rm-improved"
|
|
version = "0.13.1"
|
|
authors = ["mail@nivekuil.com"]
|
|
description = "rip: a safe and ergonomic alternative to rm"
|
|
repository = "https://github.com/nivekuil/rip"
|
|
readme = "README.org"
|
|
license = "GPL-3.0+"
|
|
include = [
|
|
"**/*.rs",
|
|
"Cargo.toml",
|
|
]
|
|
categories = ["command-line-utilities"]
|
|
autobins = false
|
|
|
|
[dependencies]
|
|
clap = "2"
|
|
walkdir = "1"
|
|
time = "0.1"
|
|
error-chain = "0.12"
|
|
|
|
[profile.release]
|
|
opt-level = "s"
|
|
|
|
[[bin]]
|
|
name = "rip"
|
|
path = "src/main.rs" |