garbage/Cargo.toml

28 lines
658 B
TOML
Raw Normal View History

2019-06-26 07:46:46 +00:00
[package]
2019-11-27 01:04:04 +00:00
name = "garbage"
2021-12-26 01:27:06 +00:00
version = "0.3.2"
2021-01-11 09:08:44 +00:00
authors = ["Michael Zhang <mail@mzhang.io>"]
2019-11-27 01:05:39 +00:00
description = "cli tool for interacting with the freedesktop trashcan"
2021-01-27 23:53:45 +00:00
repository = "https://git.sr.ht/~iptq/garbage"
2021-06-25 23:40:51 +00:00
license = "GPL-3.0"
2019-06-26 07:46:46 +00:00
edition = "2018"
2019-11-27 00:50:45 +00:00
[[bin]]
2019-11-27 01:04:04 +00:00
name = "garbage"
2019-11-27 00:50:45 +00:00
path = "src/main.rs"
2019-06-26 07:46:46 +00:00
[dependencies]
2021-01-11 09:08:44 +00:00
chrono = "0.4.19"
2021-06-25 23:36:07 +00:00
chrono-humanize = "0.2.1"
clap = { version = "3.0.0-rc.11", features = ["derive", "cargo"] }
2021-01-11 09:08:44 +00:00
lazy_static = "1.4.0"
libc = "0.2.112"
2021-01-11 09:08:44 +00:00
libmount = "0.1.15"
2021-01-27 23:53:45 +00:00
log = "0.4.14"
2021-01-11 09:08:44 +00:00
percent-encoding = "2.1.0"
2021-07-27 17:47:35 +00:00
prettytable-rs = { version = "0.8.0", default-features = false }
2021-01-11 09:08:44 +00:00
stderrlog = "0.5.1"
thiserror = "1.0.30"
2021-06-25 23:36:07 +00:00
walkdir = "2.3.2"
xdg = "2.4.0"