| Crates.io | simple-todo-cli |
| lib.rs | simple-todo-cli |
| version | 1.0.1 |
| created_at | 2025-05-28 19:08:18.571518+00 |
| updated_at | 2025-06-16 21:17:33.787909+00 |
| description | A simple todo CLI app in Rust. |
| homepage | |
| repository | |
| max_upload_size | |
| id | 1693162 |
| size | 24,357 |
A simple and interactive command-line tool written in Rust to manage todos in your project repositories.
Tasks are stored in a local todo.json file at the root of the repository.
Install with Cargo:
cargo install simple-todo-cli
todo add [TASK] # Add a new task (interactive if not provided)
todo list # Show all tasks
todo remove # Remove tasks (interactive multi-select)
todo complete # Mark tasks as completed (interactive multi-select)
Examples:
todo add "Write README"
todo complete
todo remove
Todos are saved in a todo.json file in the current working directory. You can commit this file with your project if you want to share task status.
MIT License. See LICENSE for more information.