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
13

//! Input Sources Module
//!
//! Aggregates buffer and file-based sources for reading YAML or JSON data.
//! Provides unified interfaces for memory and disk input implementations.
//!
//! Copyright (c) 2026 YAML Library Developers

/// Module providing a buffer-based source for reading JSON data from memory
pub mod buffer;
/// Module providing a file-based source for reading JSON data from disk
#[cfg(feature = "file-io")]
pub mod file;