[package] name = "burndown" version = "0.1.0" edition = "2021" description = """ burndown is a tool to help manage human readable, line-based task lists. """ documentation = "https://github.com/pyjarrett/burndown" homepage = "https://github.com/pyjarrett/burndown" repository = "https://github.com/pyjarrett/burndown" keywords = ["tasks"] categories = ["command-line-utilities"] license = "Apache-2.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [[bin]] name = "brnd" path = "src/main.rs" [dependencies] chrono = "0.4.31" clap = { version = "4.1.1", features = ["cargo"] } colored = "2.1.0" time = { version = "0.3.20", features = ["formatting", "parsing"] }