[package]
edition = "2024"
name = "rstask"
version = "0.3.0"
authors = [
"Original author: naggie",
'Erika "Princesseuh"',
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust Port of dstask"
readme = false
license = "MIT"
repository = "https://github.com/Princesseuh/rstask"
resolver = "2"
[[bin]]
name = "rstask"
path = "src/main.rs"
[[test]]
name = "due_date"
path = "tests/due_date.rs"
[[test]]
name = "log"
path = "tests/log.rs"
[[test]]
name = "modify"
path = "tests/modify.rs"
[[test]]
name = "next_context"
path = "tests/next_context.rs"
[[test]]
name = "next_filters"
path = "tests/next_filters.rs"
[[test]]
name = "next_id_index"
path = "tests/next_id_index.rs"
[[test]]
name = "next_search"
path = "tests/next_search.rs"
[[test]]
name = "show_active"
path = "tests/show_active.rs"
[[test]]
name = "show_open"
path = "tests/show_open.rs"
[[test]]
name = "show_paused"
path = "tests/show_paused.rs"
[[test]]
name = "show_resolved"
path = "tests/show_resolved.rs"
[[test]]
name = "show_templates"
path = "tests/show_templates.rs"
[[test]]
name = "show_unorganised"
path = "tests/show_unorganised.rs"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.clap_complete]
version = "4.5"
[dependencies.crossterm]
version = "0.29"
[dependencies.mdfrier]
version = "0.2"
features = ["ratatui"]
[dependencies.ratatui]
version = "0.30"
[dependencies.rstask-core]
version = "0.3.0"
[dev-dependencies.chrono]
version = "0.4"
features = ["serde"]
[dev-dependencies.serde_json]
version = "1.0"
[dev-dependencies.tempfile]
version = "3.24"