aaai-core 0.4.0

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

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

    #[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");
    }
}