rtb-tui 0.6.2

Reusable TUI widgets: forms, wizards, prompts, tables. Part of the phpboyscout Rust toolkit.
Documentation
# cargo-deny configuration.
# https://embarkstudios.github.io/cargo-deny/
#
# Waiver discipline (inherited from the monorepo): every entry carries
# the advisory ID, the reaching chain, and a dated sunset condition.

[advisories]
db-urls = ["https://github.com/rustsec/advisory-db"]
yanked = "deny"
ignore = [
    # ── via tabled_derive → tabled → rtb-tui ─────────────────────────
    # `proc-macro-error2` (2.0.1) — author confirmed both the original
    # and this v2 fork are now unmaintained (reverses RUSTSEC-2024-0370's
    # "maintained fork" finding). tabled 0.21 (latest as of 2026-06-10)
    # still pulls tabled_derive 0.11 → proc-macro-error2. Sunset: track
    # tabled's `proc-macro-error2` removal; if no movement by the next
    # rtb-tui minor release, evaluate `comfy-table` or a tabled fork.
    "RUSTSEC-2026-0173",
]

[licenses]
allow = [
    "MIT",
    "MIT-0",
    "Apache-2.0",
    "Apache-2.0 WITH LLVM-exception",
    "BSD-2-Clause",
    "BSD-3-Clause",
    "ISC",
    "Unicode-DFS-2016",
    "Unicode-3.0",
    "Zlib",
    "CC0-1.0",
    "MPL-2.0",
    "0BSD",
]
confidence-threshold = 0.8

[bans]
multiple-versions = "warn"
wildcards = "deny"
# The enforceable "framework-free" statement (extraction playbook §2.2):
# this crate must never depend back on the tool, and never regress onto
# the workspace-banned crates.
deny = [
    { crate = "rust-tool-base" },
    { crate = "rtb-cli-bin" },
    # anyhow is banned outright (thiserror + miette are the error
    # surface); nothing in this crate's graph pulls it, so no wrappers.
    { crate = "anyhow" },
    { crate = "openssl-sys" },
    { crate = "native-tls" },
]

[sources]
unknown-registry = "deny"
unknown-git = "deny"
allow-registry = ["https://github.com/rust-lang/crates.io-index"]