pavex_cli 0.1.13

The companion CLI for Pavex, a Rust framework to build API services and web applications.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use std::error::Error;

use vergen::EmitBuilder;

fn main() -> Result<(), Box<dyn Error>> {
    EmitBuilder::builder()
        // Emit VERGEN_GIT_SHA
        .git_sha(true)
        .emit()?;
    Ok(())
}