pkgcruft-git 0.0.1

QA support for verifying git commits via pkgcruft
Documentation
1
2
3
4
5
6
7
8
9
10
fn build_proto() {
    tonic_build::compile_protos("proto/pkgcruft.proto")
        .unwrap_or_else(|e| panic!("failed to compile proto: {e}"));
    println!("cargo::rerun-if-changed=proto/pkgcruft.proto");
}

fn main() {
    build_proto();
    println!("cargo::rerun-if-changed=build.rs");
}