use std::error::Error; use vergen::EmitBuilder; fn main() -> Result<(), Box> { // Emit the instructions EmitBuilder::builder().all_git().emit()?; Ok(()) }