pxcli_unlocked 0.1.49

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
use anyhow::Result;
use vergen_gitcl::{Emitter, GitclBuilder};

pub fn main() -> Result<()> {
    Emitter::default()
        .add_instructions(&GitclBuilder::default().sha(true).build()?)?
        .emit()?;
    Ok(())
}