nvd
Some functions about CPE and CVE
Usage
Add this to your Cargo.toml:
toml
[dependencies]
nvd = "0.1"
Examples
```rust
use nvd::cve::{cpematch, initdir, initlog, loaddb, makedb, synccve, Cpe23Uri};
[tokio::main]
async fn main() -> Result<(), Box> {
initlog();
let pathdir = initdir("./data").await?;
let _ = synccve(&pathdir).await?;
let _ = makedb(&pathdir).await?;
let dblist = loaddb(&pathdir).await?;
let mut cpe23urivec = Vec::new();
let line = "cpe:2.3:a:vmware:rabbitmq:3.9.10:::::::*";
let cpe23uri = Cpe23Uri::new(line);
cpe23urivec.push(cpe23uri);
cpematch(&cpe23urivec, &dblist).await?;
Ok(())
}
```