[package]
edition = "2021"
name = "hardly-working"
version = "0.1.0"
authors = ["Benjamin Kruger <logins@benjamin-kruger.com>"]
build = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Working hard or hardly working - A simple todo list CLI"
readme = "README.md"
keywords = [
"cli",
"todo",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/benjamin-kruger/hardly-working"
[lib]
name = "hardly_working"
path = "src/lib.rs"
[[bin]]
name = "hw"
path = "src/main.rs"
[[test]]
name = "task_test"
path = "tests/task_test.rs"
[dependencies.clap]
version = "4.4"
features = ["derive"]
[dependencies.colored]
version = "2.0"
[dependencies.dirs]
version = "5.0"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"