pacha 0.2.5

Model, Data and Recipe Registry with full lineage tracking
Documentation
1
2
3
4
5
6
7
8
9
10
//! Content-addressed storage for Pacha artifacts.
//!
//! This module provides BLAKE3-based content addressing for deduplication
//! and tamper detection.

mod content_address;
mod object_store;

pub use content_address::{Compression, ContentAddress};
pub use object_store::ObjectStore;