buildfix-receipts 0.2.0

Tolerant receipt loader for artifacts/*/report.json inputs
Documentation
1
2
3
4
5
6
7
8
9
10
//! Receipt ingestion utilities.
//!
//! buildfix consumes receipts produced by other tools. It intentionally does not enforce strict schema
//! validation here; the director/conformance harness should do that. buildfix is tolerant so it can
//! still plan fixes when a receipt contains extra fields or misses optional fields.

mod load;

pub use buildfix_types::receipt::ReceiptEnvelope;
pub use load::{LoadedReceipt, ReceiptLoadError, load_receipts};