microsandbox-filesystem 0.6.17

Filesystem backends and guest filesystem support for microsandbox.
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Filesystem backends for microsandbox.
//!
//! Provides host-directory passthrough, isolated single-file views, and the
//! in-memory composition backends used by the runtime.

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