26 lines
494 B
TOML
26 lines
494 B
TOML
[package]
|
|
name = "garbage"
|
|
version = "0.2.2"
|
|
authors = ["Michael Zhang <iptq@protonmail.com>"]
|
|
description = "cli tool for interacting with the freedesktop trashcan"
|
|
license = "MIT"
|
|
edition = "2018"
|
|
|
|
[[bin]]
|
|
name = "garbage"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
chrono = "0.4"
|
|
chrono-humanize = "0.1.1"
|
|
lazy_static = "1.4"
|
|
libc = "0.2"
|
|
libmount = "0.1"
|
|
log = "0.4"
|
|
percent-encoding = "2.1"
|
|
prettytable-rs = "0.8.0"
|
|
structopt = "0.3"
|
|
thiserror = "1.0"
|
|
walkdir = "2.3"
|
|
xdg = "2.2"
|