rust-todo-cli 0.2.3-beta.2

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

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

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

test:
    cargo test --all-features

cover:
    cargo llvm-cov

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