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 span;
12mod spath;
13mod watch;
14
15pub use self::error::{Error, Result};
16
17// -- Re-export everything for the root crate
18
19pub use common::*;
20pub use dir::*;
21pub use file::*;
22pub use list::*;
23pub use reshape::*;
24pub use sfile::*;
25pub use span::*;
26pub use spath::*;
27pub use watch::*;
28
29#[allow(unused)]
30pub use featured::*;
31
32// endregion: --- Modules
33
34const TOP_MAX_DEPTH: usize = 100;