rtb-tui 0.6.1

Reusable TUI widgets: forms, wizards, prompts, tables. Part of the phpboyscout Rust toolkit.
Documentation
# Task runner for rtb-tui. `just ci` mirrors the MR gate.

default: check

check:
    cargo check --all-targets

build:
    cargo build --all-targets

fmt:
    cargo fmt --all

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

lint:
    cargo clippy --all-targets -- -D warnings

test:
    cargo nextest run || cargo test

audit:
    cargo deny check

docs:
    RUSTDOCFLAGS="-D warnings" cargo doc --no-deps

site-build:
    zensical build --clean

site-serve:
    zensical serve

ci: fmt-check lint docs test audit