fast-yaml-cli 0.6.5

Fast YAML command-line processor with validation and linting
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Universal output/reporting system for CLI commands.
//!
//! This module provides a unified interface for reporting events,
//! progress, and results across all commands, centralizing color
//! handling and output formatting.

mod events;
mod output;

pub use events::ReportEvent;
pub use output::Reporter;