//! # Rldd_Minimal: Recursive ELF Dependency Resolver
//!
//! This crate provides the core logic for recursively scanning ELF binaries and
//! resolving their shared library dependencies across POSIX systems.
//! It handles standard search paths, RPATH, RUNPATH, and special cases like `musl` libc.
/// Re-exports ELF metadata types including architecture, file type, and machine specifications.
pub use ;
/// The primary entry point for the recursive dependency resolution logic.
pub use rldd_minimal;