babbel_yaml 0.1.0

Fast, modular YAML 1.2 parser and emitter with anchors, aliases, and tags
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Output Destinations Module
//!
//! Aggregates buffer and file-based destinations for writing encoded YAML or JSON data.
//! Provides unified interfaces for memory and disk output implementations.
//!
//! Copyright (c) 2026 YAML Library Developers

/// Module providing a buffer-based destination for writing JSON data into memory
pub mod buffer;
/// Module providing a file-based destination for writing JSON data to disk
#[cfg(feature = "file-io")]
pub mod file;