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
14
15
16
17
18
#[macro_export]
macro_rules! anchors_debug {
	($($arg:tt)*) => {
		#[cfg(feature = "debug-anchors")]
		{
			log::debug!($($arg)*);
		}
	};
}
/*
 * Anchors Debug Macro
 *
 * Provides a macro for debug logging in anchors and related anchor/alias/merge logic.
 * Enabled only when the `debug-anchors` feature is active.
 *
 * Copyright (c) 2026 YAML Library Developers
 */