1 2 3 4 5 6 7 8 9
use anyhow::Result; use crate::build_context::BuildContext; pub fn version(build_context: &BuildContext) -> Result<()> { println!("{}", build_context.dev_version()?); Ok(()) }