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
12
//! Fast YAML CLI library components.
//!
//! This library exposes internal modules for testing and benchmarking.
//! It is not intended for public consumption - use the `fy` binary instead.

#![cfg_attr(not(test), deny(clippy::unwrap_used))]
#![cfg_attr(not(test), deny(clippy::expect_used))]
#![cfg_attr(not(test), deny(clippy::panic))]

pub mod discovery;
/// Error types and exit codes for CLI operations
pub mod error;