[package] name = "tally-cli" version = "0.1.4" authors = ["Dylan Uhryniuk "] license = "MIT" repository = "https://github.com/uhryniuk/tally" documentation = "https://docs.rs/tally" description = "A CLI for managing counters in the terminal" keywords = ["cli"] categories = ["command-line-utilities"] readme = "README.md" edition = "2021" [[bin]] name = "tally" path = "src/main.rs" [dependencies] clap = { version = "4.5.18", features = ["derive", "env"] } anyhow = { version = "1.0.89", features = ["backtrace"] } sqlite = "0.36.1" prettytable-rs = "0.10.0" regex = "1.11.0" dirs = "5.0.1"