use thiserror::Error;
#[derive(Debug, Error)]
pub enum SupplyChainError {
#[error("Failed to parse cargo-deny output: {0}")]
ParseError(String),
#[error("Vulnerable dependency found: {0}")]
VulnerabilityFound(String),
}
pub type Result<T> = std::result::Result<T, SupplyChainError>;