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
12
13
//! Cloud storage integration.
//!
//! Provides S3-compatible storage and cloud tiering policies.

/// AWS S3-compatible object storage.
#[cfg(feature = "cloud-s3")]
pub mod s3;
/// Cloud tiering policies.
pub mod tier;

#[cfg(feature = "cloud-s3")]
pub use s3::*;
pub use tier::*;