workflow-core 0.14.1

Utilities and curated re-exports for async rust native and browser development
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use std::error::Error;
use vergen::EmitBuilder;

// https://docs.rs/vergen/latest/vergen/struct.EmitBuilder.html#method.emit
fn main() -> Result<(), Box<dyn Error>> {
    EmitBuilder::builder()
        .all_build()
        .all_cargo()
        .all_git()
        .all_rustc()
        .emit()?;
    Ok(())
}