[package]
edition = "2021"
name = "taskgun"
version = "0.5.0"
authors = ["Hamza Mohd Zubair <hamzamohdzubair@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A rusty gun for our taskwarrior - bulk task generation and smart scheduling"
readme = "README.md"
keywords = [
"taskwarrior",
"cli",
"productivity",
"tasks",
]
categories = ["command-line-utilities"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/hamzamohdzubair/taskgun"
[[bin]]
name = "taskgun"
path = "src/main.rs"
[[test]]
name = "create_test"
path = "tests/create_test.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[[test]]
name = "main_test"
path = "tests/main_test.rs"
[[test]]
name = "search_test"
path = "tests/search_test.rs"
[dependencies.anyhow]
version = "1"
[dependencies.chrono]
version = "0.4"
[dependencies.clap]
version = "4"
features = [
"derive",
"cargo",
]
[dependencies.clap_complete]
version = "4"
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.predicates]
version = "3"
[dev-dependencies.tempfile]
version = "3"