microsandbox-filesystem 0.6.0

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

#[cfg(unix)]
pub mod dualfs;
#[cfg(unix)]
pub mod memfs;
pub mod passthroughfs;
#[cfg(unix)]
pub(crate) mod shared;