[package]
edition = "2021"
name = "tto"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "`to` is a small Rust CLI for project-scoped TODO lists. It walks up from your current working directory, finds the nearest `.todo` file, and operates on that task list automatically."
readme = "README.md"
keywords = [
"cli",
"todo",
"agents",
"task-runner",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/thetanav/to"
[lib]
name = "to"
path = "src/lib.rs"
[[bin]]
name = "to"
path = "src/main.rs"
[dependencies]