| Crates.io | rust-todo |
| lib.rs | rust-todo |
| version | 0.2.0 |
| created_at | 2022-10-06 06:09:38.128389+00 |
| updated_at | 2022-10-16 04:11:36.701489+00 |
| description | A to-do list CLI tool made in Rust |
| homepage | https://github.com/yees7/rust-todo |
| repository | https://github.com/yees7/rust-todo |
| max_upload_size | |
| id | 681018 |
| size | 28,520 |
A to-do list CLI tool written in Rust.
A todo-list CLI tool written in Rust
Usage:
rtodo [OPTIONS]
rtodo [OPTIONS] [ARGUMENTS]
Options:
--help, -h Prints this help message
--get, -g [INDEX] Prints todo info at index
--list, -l Prints all todos
--new, -n [NAME] Creates new todo with name
--clear, -c Clears all todos
--remove, -r [INDEX] Removes todo at index
--tag, -t [INDEX] [COLOR] Tags todo at index with color
--done, d [INDEX] Makes todo finished/unfinished
--version, -v Prints version info
Tag Colors:
red ⦿
blue ⦿
yellow ⦿
green ⦿
cyan ⦿
purple, magenta ⦿
Install Rust and Cargo using rustup.rs
Check if it's properly installed:
rustc --version
cargo --version
cargo install rust-todo
git clone https://github.com/yees7/rust-todo
cd into the directory and build with release flag:
cd rust-todo
cargo build --release
rust-todo executable will be available in target/release/rust-todo