Skip to main content

wowlab_fs/
lib.rs

1//! Filesystem and native path policy for `WoW` Lab.
2//!
3//! The crate separates lexical path manipulation from host filesystem access.
4//! Its path types omit queries, keeping I/O inside the reviewed operation modules.
5
6#[cfg(not(target_family = "wasm"))]
7pub mod artifact;
8#[cfg(not(target_family = "wasm"))]
9pub mod atomic;
10pub mod checksum;
11pub mod containment;
12pub mod directory;
13pub mod error;
14#[cfg(not(target_family = "wasm"))]
15pub mod executable;
16pub mod file;
17#[cfg(not(target_family = "wasm"))]
18pub mod link;
19#[cfg(not(target_family = "wasm"))]
20pub mod lock;
21pub mod path;
22#[cfg(not(target_family = "wasm"))]
23pub mod private_file;
24#[cfg(not(target_family = "wasm"))]
25pub mod temporary;
26pub mod walk;
27pub mod working_directory;