Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mateusfg7/to-do.rs

Implementation of a CLI ToDo with Rust
https://github.com/mateusfg7/to-do.rs

clap cli sqlite to-do

Last synced: about 1 month ago
JSON representation

Implementation of a CLI ToDo with Rust

Awesome Lists containing this project

README

        

# to-do.rs
_A ToDo cli app implementation with Rust_

## Features

- [x] **C**reate to-do
- [x] **R**ead to-dos
- [x] **U**pdate to-do (rename)
- [x] **D**elete to-do
- [x] Mark as completed
- [x] Save in a SQLite file

## CLI

- [x] Add todo `a | add`
- [x] List todo `l | list`
- [x] uncompleted (default)
- [x] all `-a | --all`
- [x] completed `-c | --completed`
- [x] Mark todo as completed `x | done`
- [x] Delete todo `d | delete`

---
_note_

Inspire on https://github.com/thekuwayama/todo/tree/main for re-implement using plain-text as database