Skip to main content

concinnity_host/store/
mod.rs

1//! The project's state tree on disk: where it is anchored (`paths`), how a source
2//! asset is found inside it (`source`), and how the compiled blob is read out of
3//! it (`blob`).
4//!
5//! This is the engine's only home for filesystem knowledge below the engine and
6//! cook crates. concinnity-blob owns the pure bytes <-> metadata transforms and
7//! performs no I/O; concinnity-core owns the runtime blob types and the
8//! `PayloadStore` seam and knows neither paths nor files. The reads that join the
9//! two live here.
10
11pub mod blob;
12pub mod paths;
13pub mod source;