cargo-plugin-utils 0.0.7

Shared utilities for cargo plugins (logger, subprocess handling, common functions)
Documentation
1
2
3
4
5
6
7
8
9
10
//! Build script to install git hooks via sloughi
use sloughi::Sloughi;

fn main() {
    let _ = Sloughi::new()
        .custom_path(".githooks")
        .ignore_env("CI")
        .ignore_env("GITHUB_ACTIONS")
        .install();
}