[package] name = "garbage" version = "0.4.3" authors = ["Michael Zhang "] description = "CLI tool for interacting with the freedesktop trashcan" repository = "https://git.sr.ht/~mzhang/garbage" license = "GPL-3.0-only" edition = "2021" [workspace] members = ["fs"] [[bin]] name = "garbage" path = "src/main.rs" [dependencies] anyhow = { version = "1.0.70", features = ["backtrace"] } atty = "0.2.14" chrono = { version = "0.4.24", features = ["serde"] } chrono-humanize = "0.2.2" clap = { version = "4.2.4", features = ["derive", "cargo"] } clap_complete = "4.2.1" garbage-fs = { version = "0.1", path = "fs" } lazy_static = "1.4.0" libc = "0.2.142" nix = { version = "0.29.0", features = ["mount"] } percent-encoding = "2.2.0" prettytable-rs = { version = "0.10.0", default-features = false } serde = { version = "1.0.203", features = ["derive"] } serde_json = "1.0.117" tracing = { version = "0.1.37", features = ["log"] } tracing-subscriber = "0.3.16" walkdir = "2.3.3" xdg = "2.4.1"