1 2 3 4 5 6 7
fn main() -> Result<(), Box<dyn std::error::Error>> { vergen::EmitBuilder::builder() .all_build() .all_git() .emit()?; Ok(()) }