entropyfs 0.1.0

Entropy-native Linux filesystem: persist irreducible state, materialize structure, preserve exact bytes.
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Bounded performance-only caches (ADR-0014, ยง26): materialized chunks,
//! metadata, and decoded models.
//!
//! Every cache has an explicit memory budget and is **never**
//! authoritative: dropping all caches affects only performance, never
//! correctness. Keys are immutable content ids or inode numbers whose
//! backing objects are content-addressed.

#![forbid(unsafe_code)]

pub mod materialized;
pub mod metadata;
pub mod model;