babbel_yaml 0.1.1

Fast, modular YAML 1.2 parser and emitter with anchors, aliases, and tags
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! YAML Developer Tools Module
//!
//! Aggregates developer utilities for debugging, inspection, pretty-printing, and diagnostics
//! for YAML documents. Includes submodules for debugging, diffing, inspection, and tracing.
//!
//! Copyright (c) 2026 YAML Library Developers

#[cfg(feature = "alloc")]
pub mod debug;
#[cfg(feature = "alloc")]
pub mod diff;
#[cfg(feature = "alloc")]
pub mod inspect;
#[cfg(feature = "alloc")]
pub mod trace;