https://github.com/andrejkoller/rusty-todo
CLI-based ToDo list manager built with Rust and serde for JSON storage.
https://github.com/andrejkoller/rusty-todo
cli rust todolist
Last synced: 5 months ago
JSON representation
CLI-based ToDo list manager built with Rust and serde for JSON storage.
- Host: GitHub
- URL: https://github.com/andrejkoller/rusty-todo
- Owner: andrejkoller
- License: mit
- Created: 2025-10-30T13:42:53.000Z (8 months ago)
- Default Branch: master
- Last Pushed: 2025-12-04T12:37:37.000Z (7 months ago)
- Last Synced: 2025-12-05T13:55:19.590Z (7 months ago)
- Topics: cli, rust, todolist
- Language: Rust
- Homepage:
- Size: 10.7 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Short description
A simple and lightweight command-line ToDo application built in Rust.
Manage your daily tasks directly from the terminal — add, list, mark as done, and delete tasks with ease.
All tasks are saved locally in a JSON file for persistence.
## ✨ Features
- 📝 Add new tasks
- 📋 List all existing tasks
- ✔️ Mark tasks as completed
- 🗑️ Delete tasks by ID
- 💾 Auto-save tasks to `tasks.json`
- ⚙️ Clean modular structure (`task.rs`, `storage.rs`, `menu.rs`)
## 📦 Installation
Make sure you have [Rust](https://www.rust-lang.org/tools/install) installed.
```bash
git clone https://github.com/andrejkoller/rusty-todo.git
cd rusty-todo
```
```bash
cargo run
```