[[bin]]
name = "tasky-cli"
path = "src/main.rs"
[dependencies.chrono]
version = "0.4.41"
[dependencies.clap]
features = ["derive"]
version = "4.0"
[dependencies.colored]
version = "2.0"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dependencies.serde_json]
version = "1.0"
[lib]
name = "tasky_cli"
path = "src/lib.rs"
[package]
authors = ["MrGranday"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities"]
description = "A simple Rust CLI to manage to-do lists"
edition = "2024"
keywords = ["cli", "todo", "rust", "beginner-friendly"]
license = "MIT"
name = "tasky-cli"
readme = "README.md"
repository = "https://github.com/MrGranday/tasky"
version = "0.4.0"
[[test]]
name = "add"
path = "tests/add.rs"
[[test]]
name = "done"
path = "tests/done.rs"
[[test]]
name = "edit"
path = "tests/edit.rs"
[[test]]
name = "list"
path = "tests/list.rs"
[[test]]
name = "remove"
path = "tests/remove.rs"