A minimal CLI for tracking daily tasks, written in Rust.
Build the project first:
cargo buildOr run commands directly with cargo run --:
cargo run -- add "<title>" [priority]priority is optional — one of low, medium, high (default: medium).
cargo run -- add "Buy milk" low
cargo run -- add "Finish report" high
cargo run -- add "Call dentist"cargo run -- list [filter]filter is optional — one of done, pending, low, medium, high.
cargo run -- list
cargo run -- list pending
cargo run -- list highcargo run -- done <id>cargo run -- rm <id>Tasks are saved to tasks.txt in the project root as plain text, and reloaded automatically each time you run a command.