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
//! Evidence discipline (ยง50): deterministic casefiles, crash-court
//! receipts, benchmark manifests, reproducibility records.
//!
//! Every nontrivial storage claim must be backed by a reproducible
//! artifact. serde_json is used here and only here for persistent data
//! (evidence is human-readable; the filesystem format is explicit byte
//! codecs).

#![forbid(unsafe_code)]

pub mod casefile;
pub mod manifest;
pub mod receipt;