[package]
edition = "2024"
name = "rustodo"
version = "2.15.0"
authors = ["João Felipe Galvão <github.com/joaofelipegalvao>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A modern, powerful task manager built with Rust"
readme = "README.md"
keywords = [
"todo",
"task-manager",
"cli",
"productivity",
"terminal",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/joaofelipegalvao/rustodo"
[lib]
name = "rustodo"
path = "src/lib.rs"
[[bin]]
name = "todo"
path = "src/main.rs"
[[test]]
name = "helpers"
path = "tests/helpers.rs"
[[test]]
name = "test_add_command"
path = "tests/test_add_command.rs"
[[test]]
name = "test_deps_command"
path = "tests/test_deps_command.rs"
[[test]]
name = "test_done_commands"
path = "tests/test_done_commands.rs"
[[test]]
name = "test_edit_command"
path = "tests/test_edit_command.rs"
[[test]]
name = "test_projects_command"
path = "tests/test_projects_command.rs"
[[test]]
name = "test_recur_command"
path = "tests/test_recur_command.rs"
[[test]]
name = "test_remove_command"
path = "tests/test_remove_command.rs"
[[test]]
name = "test_search_command"
path = "tests/test_search_command.rs"
[[test]]
name = "test_undone_command"
path = "tests/test_undone_command.rs"
[dependencies.anyhow]
version = "1.0.101"
[dependencies.chrono]
version = "0.4.44"
features = ["serde"]
[dependencies.chrono-english]
version = "0.1.8"
[dependencies.clap]
version = "4.5"
features = [
"derive",
"cargo",
]
[dependencies.colored]
version = "3.1.1"
[dependencies.directories]
version = "6.0.0"
[dependencies.fs4]
version = "0.13.1"
[dependencies.regex]
version = "1.12.3"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.149"
[dependencies.strsim]
version = "0.11.1"
[dependencies.tempfile]
version = "3.25.0"
[dependencies.thiserror]
version = "2.0.18"
[dependencies.toml]
version = "1.0.3+spec-1.1.0"
[dependencies.uuid]
version = "1.21.0"
features = [
"v4",
"serde",
]