lcpfs 2026.1.102

LCP File System - A ZFS-inspired copy-on-write filesystem for Rust
//! Storage layer (ZFS-like layers).
//!
//! Low-level storage object management including virtual devices,
//! DMU transactions, ZAP (attribute processor), ZIL (intent log),
//! ZPL (POSIX layer), and ZVOL (block volumes).

/// Data Management Unit - object-level transactional access.
pub mod dmu;
/// Virtual devices (mirrors, RAID-Z, etc).
pub mod vdev;
/// ZFS Attribute Processor - key/value storage.
pub mod zap;
/// ZFS Intent Log - write-ahead logging.
pub mod zil;
/// ZFS POSIX Layer - POSIX filesystem semantics.
pub mod zpl;
/// ZFS Volumes - block device emulation.
pub mod zvol;

pub use dmu::*;
pub use vdev::*;
pub use zap::*;
pub use zil::*;
pub use zpl::*;
pub use zvol::*;