//! CCR marker resolution - port of plugins/aphrodite/_resolve.py
//!
//! Resolves CCR markers to their original content. Supports:
//! - Single hash resolution (inline store only)
//! - Recursive nested marker unpacking (up to RECURSIVE_DEPTH levels)
//! - Query filtering on resolved content
//! - Cycle-safe recursive expansion with resolved cache
pub use expand;
pub use filter_lines;
pub use resolve_one;
pub use resolve_recursive;
// Re-exported (crate-wide, test target only) so `use super::*` in `tests`
// and the recursive resolver can reach these marker-parsing helpers.
pub use ;
// Imported here so the `use super::*` in `tests` resolves AphroditeState.
pub use crateAphroditeState;