dev-scope 2024.2.14

A tool to help diagnose errors, setup machines, and report bugs to authors.
Documentation
1
2
3
4
5
6
7
8
use anyhow::Result;
use vergen::EmitBuilder;

pub fn main() -> Result<()> {
    EmitBuilder::builder().all_build().all_git().emit()?;

    Ok(())
}