keyhog 0.5.40

keyhog: detects leaked credentials in source trees, git history, and cloud storage
Documentation
1
2
3
4
5
6
7
8
9
10
//! Contract gate: backend subcommand defines self-test failure exit 4.

#[test]
fn backend_self_test_exit_code_four_in_src() {
    let src = include_str!(concat!(
        env!("CARGO_MANIFEST_DIR"),
        "/src/subcommands/backend.rs"
    ));
    assert!(src.contains("const EXIT_SELF_TEST_FAILED: u8 = 4"));
}