| Crates.io | notez |
| lib.rs | notez |
| version | 0.1.1 |
| created_at | 2025-07-09 21:55:16.84548+00 |
| updated_at | 2025-07-09 22:02:39.758397+00 |
| description | A zero-dependency CLI to-do manager in pure rust |
| homepage | |
| repository | https://github.com/Webrowse/cli-crud-rust |
| max_upload_size | |
| id | 1745557 |
| size | 12,028 |
notez is a command-line task manager built in Rust without any external dependencies. It allows users to add, view, complete, and delete tasks using simple commands, storing data locally in a Tasks.txt file.
clap, serde, or other crates)You must have Rust installed. Visit https://rustup.rs for setup instructions.
cargo build --release
The compiled binary will be located at target/release/notez.
All task data is stored in Tasks.txt in the same directory as the binary.
./notez add "Buy groceries"
./notez list
Sample Output:
1 [ ] Buy groceries
2 [X] Walk the dog
./notez complete 1
Toggles task 1 between completed [X] and incomplete [ ].
./notez delete 1
Deletes the task with the given number.
This project is licensed under the MIT License.
A pure, zero-dependency CLI utility in Rust to keep your task list clean and manageable.