secretspec 0.20.0

A declarative interface for every secret provider.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use miette::Result;

fn main() -> Result<()> {
    // Match the primary CLI's standard Unix pipe behavior.
    #[cfg(unix)]
    unsafe {
        libc::signal(libc::SIGPIPE, libc::SIG_DFL);
    }

    secretspec::integration::git::main()
}