Skip to main content

pf_core/
lib.rs

1// SPDX-License-Identifier: MIT
2//! # `pf-core`
3//!
4//! Core primitives for ProcessFork: the content-addressed store (CAS), the
5//! `.pfimg` manifest format, and atomic-snapshot orchestration across the four
6//! layers (model, cache, world, effects).
7//!
8//! Phase 0: scaffold only. Real implementation lands in Phase 1.
9
10#![forbid(unsafe_code)]
11
12pub mod cas;
13pub mod digest;
14pub mod error;
15pub mod fixture;
16pub mod manifest;
17pub mod snapshot;
18pub mod store;
19
20pub use error::{Error, Result};