21 lines
388 B
TOML
21 lines
388 B
TOML
[package]
|
|
name = "garbage"
|
|
version = "0.1.1"
|
|
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]
|
|
chrono = "0.4"
|
|
env_logger = "0.7"
|
|
lazy_static = "1.0"
|
|
log = "0.4"
|
|
regex = "1.1"
|
|
structopt = "0.3"
|
|
walkdir = "2.2"
|
|
xdg = "2.2"
|