microsandbox-filesystem 0.3.8

Filesystem backends and guest filesystem support for microsandbox.
1
2
3
4
5
6
7
8
9
10
//! Filesystem backends for microsandbox.
//!
//! Currently provides [`PassthroughFs`](passthroughfs::PassthroughFs) which exposes
//! a single host directory to the guest VM via virtio-fs with stat virtualization.

pub mod dualfs;
pub mod memfs;
pub mod overlayfs;
pub mod passthroughfs;
pub(crate) mod shared;