csaf-walker 0.17.0

A library to work with CSAF data
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::verification::{
    check::Check, check::vex::check_all_products_v11ies_exits_in_product_tree,
};

pub fn init_csaf_security_advisory_verifying_visitor() -> Vec<(&'static str, Box<dyn Check>)> {
    vec![(
        "check_all_products_v11ies_exits_in_product_tree",
        Box::new(check_all_products_v11ies_exits_in_product_tree),
    )]
}