| Crates.io | rustappCLI |
| lib.rs | rustappCLI |
| version | 0.1.0 |
| created_at | 2024-12-31 15:31:11.086657+00 |
| updated_at | 2024-12-31 15:31:11.086657+00 |
| description | A simple command-line to-do list application written in Rust. |
| homepage | |
| repository | https://github.com/prvcds/to-do-list-CLI-rust |
| max_upload_size | |
| id | 1500124 |
| size | 14,569 |
A simple command-line to-do list application written in Rust.
git clone https://github.com/yourusername/rustApp.git
cd rustApp
cargo build
Run the application using cargo run followed by the desired command and options.
Add a new task
cargo run -- add -d "Task description"
List all tasks
cargo run -- list
Mark a task as done
cargo run -- done -i 1
Remove a task
cargo run -- remove -i 1
Search for tasks by description
cargo run -- search -q "query"
Display the help message:
cargo run -- --help
Display the version information:
cargo run -- --version
This project is licensed under the MIT License. See the LICENSE file for details.