bitvex 0.3.0

Automate CRA compliance: generate OpenVEX reports from Yocto SBOMs by filtering CVEs with kernel config and device tree analysis
Documentation
1
2
3
4
5
6
7
8
9
10
//! OSV (Open Source Vulnerabilities) API client.
//!
//! Provides an async client for querying the [OSV API](https://osv.dev/)
//! with support for batch queries and concurrent alias resolution.

pub mod client;
pub mod db;
pub mod offline;

pub use client::{OsvClient, OsvResult, OsvVuln};