sandbox-fs 0.2.1

OverlayFS and volume management for sandbox-rs
Documentation
1
2
3
4
5
6
7
8
9
//! sandbox-fs: Filesystem management for sandbox-rs
//!
//! Provides OverlayFS support and volume management.

pub mod filesystem;
pub mod volumes;

pub use filesystem::{LayerInfo, OverlayConfig, OverlayFS};
pub use volumes::{VolumeManager, VolumeMount, VolumeType};