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