relayburn-cli 2.4.0

The `burn` CLI — published to crates.io. Crate name is relayburn-cli because `burn` is taken on crates.io; the binary keeps the `burn` invocation.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Shared rendering helpers for the CLI's read-path commands.
//!
//! - [`table`] — thin wrapper around `comfy-table` for tabular output.
//! - [`json`] — `--json`-aware structured output writer.
//! - [`error`] — typed-error → stderr / exit-code mapping (with a
//!   JSON-mode envelope for `--json`).
//!
//! Wave 2 PRs add per-command rendering helpers next to their command
//! file, but anything reusable across two or more commands belongs
//! here.

pub mod error;
pub mod format;
pub mod json;
pub mod table;