Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/mateusfg7/to-do.rs
- Owner: mateusfg7
- Created: 2023-12-07T21:10:34.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-10-01T19:18:52.000Z (about 2 months ago)
- Last Synced: 2024-10-02T08:54:58.888Z (about 2 months ago)
- Topics: clap, cli, sqlite, to-do
- Language: Rust
- Homepage:
- Size: 43 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
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