rustsec 0.24.0

Client library for the RustSec security advisory database
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Git repository handling for the RustSec advisory DB

mod authentication;
mod commit;
mod gitpath;
mod modification_time;
mod repository;

pub use self::{authentication::with_authentication, commit::Commit, repository::Repository};

#[cfg(feature = "osv-I-know-this-is-unstable")]
pub use self::{gitpath::GitPath, modification_time::GitModificationTimes};

/// Location of the RustSec advisory database for crates.io
pub const DEFAULT_URL: &str = "https://github.com/RustSec/advisory-db.git";