rust-todo-cli 0.2.3-beta.1

A CLI tool for managing to-do lists
1
2
3
4
5
6
7
8
9
10
11
12
13
14
default:
    @just --list

ppy:
    cargo clippy --all-targets --all-features -- -D warnings

fmt:
    cargo fmt --all -- --check

test:
    cargo test --all-features

check: fmt ppy test
    @echo "All checks passed"