1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/// System utilities for time handling, environment variables, file system operations, and system interactions.
///
/// This module provides convenient wrappers for system-level operations including
/// time manipulation, environment variable access, path operations, and file metadata.
///
/// ## Submodules
///
/// - [`datetime`]: Date and time utilities with serialization and parallel processing
/// - [`env`]: Environment variable handling with JSON parsing and validation
/// - [`path`]: File system operations with parallel and async capabilities
///
/// ## Backward Compatibility
///
/// All functions are re-exported at the module level for backward compatibility.
/// You can access them directly as `trash_analyzer::sys::function_name()` or
/// use the submodules for more organized access.
// Standard library imports
use ;
// Submodule declarations
// Re-exports for backward compatibility
pub use *;
pub use *;
pub use *;
/// Performance timer