1use anyhow::Result; 2 3#[allow(clippy::unused_async)] 4/// Print version information to stdout. 5/// 6/// # Errors 7/// 8/// Returns an error on I/O failure. 9pub async fn run() -> Result<()> { 10 tracing::info!("hm {}", env!("CARGO_PKG_VERSION")); 11 Ok(()) 12}