keyhog-core 0.5.39

keyhog-core: shared data model and detector specifications for the KeyHog secret scanner
Documentation
1
2
3
4
5
6
7
8
9
10
//! Migrated from `src/config.rs` - default scan config passes validation.

use keyhog_core::ScanConfig;

#[test]
fn default_config_validates() {
    ScanConfig::default()
        .validate()
        .expect("default ScanConfig must validate without error");
}