lcpfs 2026.1.102

LCP File System - A ZFS-inspired copy-on-write filesystem for Rust
1
2
3
4
5
6
7
8
9
10
11
//! Utilities and benchmarks.
//!
//! Provides allocators and benchmarking tools.

/// Custom allocators for no_std.
pub mod alloc;
/// Performance benchmarking utilities.
pub mod bench;

pub use alloc::*;
pub use bench::*;