Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/poffomoe/todo
📝 Just a simple todo cli app made in Rust.
https://github.com/poffomoe/todo
blazingly-fast rust todo
Last synced: 21 days ago
JSON representation
📝 Just a simple todo cli app made in Rust.
- Host: GitHub
- URL: https://github.com/poffomoe/todo
- Owner: poffomoe
- Created: 2023-11-03T16:19:46.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-01T08:25:48.000Z (2 months ago)
- Last Synced: 2024-12-01T09:28:18.511Z (2 months ago)
- Topics: blazingly-fast, rust, todo
- Language: Rust
- Homepage:
- Size: 13.7 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Super simple CLI todo app written in Rust
## Purpose
This is an app that I made just to practise writing Rust. It does not invent anything new. Just a silly little todo app.
## Synopsis
Add a task to the list:
```todo-cli-app a/add "this is a task"```List tasks:
```todo-cli-app l/list```Remove a task from the list:
```todo-cli-app d/delete 1```## Features
- Adding tasks (saving task into a file)
- Listing tasks (reading tasks from a file)
- Deleting tasks (removing task from a file)
- Showing help message (best feature!!)## todo (todo in todo app repo how ironic)
- [x] Have fun learning Rust and Git
- [x] !!! Make the app arg-based instead of menu-based
- [ ] More features, for example, urgency and being able to mark tasks as done
- [ ] Formal language (? not sure)
- [x] Optimisation?.. I don't know what else to put