Skip to main content

fast_yaml_cli/
lib.rs

1//! Fast YAML CLI library components.
2//!
3//! This library exposes internal modules for testing and benchmarking.
4//! It is not intended for public consumption - use the `fy` binary instead.
5
6#![cfg_attr(not(test), deny(clippy::unwrap_used))]
7#![cfg_attr(not(test), deny(clippy::expect_used))]
8#![cfg_attr(not(test), deny(clippy::panic))]
9
10pub mod discovery;
11/// Error types and exit codes for CLI operations
12pub mod error;