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