osv 0.3.0

Rust library for parsing the OSV schema and client API
Documentation
1
2
3
4
5
6
#[tokio::main]
async fn main() {
    let commit = "6879efc2c1596d11a6a6ad296f80063b558d5e0f";
    let res = osv::client::query_commit(commit).await.unwrap();
    println!("{:#?}", res);
}