entropyfs 0.1.0

Entropy-native Linux filesystem: persist irreducible state, materialize structure, preserve exact bytes.
//! Integration test modules.
//!
//! These live inside the single crate (ADR-0001) and exercise cross-module
//! invariants: representation round trips, rank round trips, the persistent
//! store, crash recovery, FUSE semantics, fsck, and ENOSPC behavior.

#![forbid(unsafe_code)]

pub mod crash_recovery;
pub mod durability;
pub mod enospc;
pub mod fsck;
pub mod helpers;
pub mod namespace_ops;
pub mod optimizer;
pub mod persistent_store;
pub mod rank_roundtrip;
pub mod representation_roundtrip;
pub mod snapshots;