//! solana-validator-optimizer library interface
//!
//! # Overview
//! This library provides tools to optimize Solana validator performance,
//! including:
//! - Snapshot prefetching from trusted mirrors
//! - RPC response caching with LRU
//! - Prometheus-ready metrics
//! - Configuration auto-tuning for validator nodes
/// Current version of the optimizer
pub const VERSION: &str = env!;
/// A brief description of this optimizer's capabilities.
// === Public API modules ===