"Walk" CSAF data from a remote server, allowing on to work with the data.
shell
csaf download -3 -v -o out/ https://access.redhat.com/security/data/csaf/v2/provider-metadata.json
rust
async fn main() {
Walker::new(discover.source, client.clone())
.walk(RetrievingVisitor::new(
client.clone(),
ValidationVisitor::new(
client,
move |advisory: Result<ValidatedAdvisory, ValidationError>| async move {
log::info!("Found advisory: {advisory:?}");
},
)
))
.await?;
}