Skip to main content

xtask_todo_lib/devshell/vfs/
mod.rs

1//! Virtual filesystem for the devshell.
2
3mod copy_to_host;
4mod error;
5mod node;
6mod path;
7mod tree;
8
9#[cfg(test)]
10mod tests;
11
12pub use error::VfsError;
13pub use node::Node;
14pub use path::{normalize_path, resolve_path_with_cwd};
15pub use tree::Vfs;