https://github.com/hackerx7889/todo-cli-rs
A simple todo list application for CLI.
https://github.com/hackerx7889/todo-cli-rs
rust todo-cli
Last synced: about 1 month ago
JSON representation
A simple todo list application for CLI.
- Host: GitHub
- URL: https://github.com/hackerx7889/todo-cli-rs
- Owner: HackerX7889
- License: mit
- Created: 2024-08-09T12:11:20.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-08-09T12:40:07.000Z (10 months ago)
- Last Synced: 2025-04-07T07:55:55.288Z (about 1 month ago)
- Topics: rust, todo-cli
- Language: Rust
- Homepage: https://crates.io/crates/todo_cli_rs
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# To-Do List CLI
A simple command-line to-do list application written in Rust. This application allows users to manage tasks efficiently through a terminal interface, providing features such as adding, removing, and viewing tasks with persistent storage.
## Features
- Add tasks to the list
- Remove tasks by index
- View all tasks
- Persistent storage of tasks using a text file## Installation
To install the To-Do List CLI, you need to have Rust and Cargo installed on your system. If you haven't installed Rust yet, you can do so by following the instructions on the [official Rust website](https://www.rust-lang.org/tools/install).
Once you have Rust and Cargo installed, you can install this project:
```bash
cargo add todo_cli_rs
```or clone the git repository:
```bash
git clone https://github.com/HackerX7889/Todo-CLI-RS
cd Todo-CLI-RS
cargo build --release
```