aaai-core 0.10.5

Core engine for aaai — audit for asset integrity
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod config;

#[cfg(test)]
mod tests {
    use super::config::ProjectConfig;

    #[test]
    fn starter_yaml_is_valid() {
        let yaml = ProjectConfig::starter_yaml();
        let _cfg: ProjectConfig = serde_yaml::from_str(yaml)
            .expect("starter YAML must be valid");
    }
}