uv-audit 0.0.50

This is an internal component crate of uv
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Vulnerability services.

pub use project_status::ProjectStatusAudit;

pub mod osv;
mod project_status;

/// The shape of the vulnerability service.
#[derive(Copy, Clone, Debug)]
#[cfg_attr(feature = "clap", derive(clap::ValueEnum))]
pub enum VulnerabilityServiceFormat {
    Osv,
}