27 lines
468 B
TOML
27 lines
468 B
TOML
[package]
|
|
name = "garbage"
|
|
version = "0.2.0-rc4"
|
|
authors = ["Michael Zhang <iptq@protonmail.com>"]
|
|
description = "cli tool for interacting with the freedesktop trashcan"
|
|
license = "MIT"
|
|
edition = "2018"
|
|
|
|
[profile.release]
|
|
lto = true
|
|
panic = "abort"
|
|
|
|
[[bin]]
|
|
name = "garbage"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
chrono = "0.4"
|
|
lazy_static = "1.0"
|
|
libc = "0.2"
|
|
libmount = "0.1"
|
|
log = "0.4"
|
|
structopt = "0.3"
|
|
thiserror = "1.0"
|
|
walkdir = "2.2"
|
|
xdg = "2.2"
|