simple_fs/lib.rs
1// region: --- Modules
2
3mod common;
4mod dir;
5mod error;
6mod featured;
7mod file;
8mod list;
9mod reshape;
10mod sfile;
11mod spath;
12mod watch;
13
14pub use self::error::{Error, Result};
15
16// -- Re-export everything for the root crate
17
18pub use common::*;
19pub use dir::*;
20#[allow(unused)]
21pub use featured::*;
22pub use file::*;
23pub use list::*;
24pub use reshape::*;
25pub use sfile::*;
26pub use spath::*;
27pub use watch::*;
28
29// endregion: --- Modules
30
31const TOP_MAX_DEPTH: usize = 100;