Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mateisr/todo-rs
A simple to-do CLI app written in Rust.
https://github.com/mateisr/todo-rs
Last synced: about 1 month ago
JSON representation
A simple to-do CLI app written in Rust.
- Host: GitHub
- URL: https://github.com/mateisr/todo-rs
- Owner: MateiSR
- Created: 2024-02-15T14:10:15.000Z (12 months ago)
- Default Branch: master
- Last Pushed: 2024-02-20T15:22:28.000Z (12 months ago)
- Last Synced: 2024-11-09T10:14:47.100Z (3 months ago)
- Language: Rust
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# todo-rs: Rust Todo
A simple command-line todo application written in Rust.
## Features
- Add new tasks to your todo list.
- Mark tasks as completed.
- List all tasks in your todo list.
- Remove tasks from your todo list.## Installation
1. Ensure you have Rust installed. If not, follow the instructions at [rust-lang.org](https://www.rust-lang.org/tools/install).
2. Clone this repository and build the app:```sh
git clone https://github.com/mateisr/todo-rs.git
cd todo-rs
cargo build --release
```## Usage
- todo add : Add a new task to your todo list.
- todo complete : Mark a task as completed.
- todo list: List all tasks in your todo list.
- todo remove : Remove a task from your todo list.## Contributing
Contributions are welcome! If you have any ideas, suggestions, or improvements, feel free to open an issue or submit a pull request.