qualifier 0.5.1

Deterministic quality annotations for software artifacts
Documentation
pub mod annotation;
pub mod compact;
pub mod content_hash;
pub mod qual_file;

#[cfg(feature = "cli")]
pub mod cli;

/// Library-wide error type.
#[derive(Debug, thiserror::Error)]
pub enum Error {
    #[error("I/O error: {0}")]
    Io(#[from] std::io::Error),

    #[error("JSON error: {0}")]
    Json(#[from] serde_json::Error),

    #[error("cycle detected in {context}: {detail}")]
    Cycle { context: String, detail: String },

    #[error("{0}")]
    Validation(String),
}

/// Library-wide result type.
pub type Result<T> = std::result::Result<T, Error>;