simple_fs/
lib.rs

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