//! Version helper (optional)
//!
//! clap already wires `--version`. Keep this for custom programmatic version
//! printing if needed.
use tracing::info;
/// Print program version from Cargo metadata.
pub async fn print_version() {
let version = env!("CARGO_PKG_VERSION");
info!("XBP Version: {}", version);
}