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
//  LIB.rs
//    by Lut99
//
//  Created:
//    07 Jun 2023, 16:22:04
//  Last edited:
//    01 May 2024, 10:11:07
//  Auto updated?
//    Yes
//
//  Description:
//!   The `specifications` crate defines not just public interfaces and
//!   structs, but parts of the specification that are "extra-Rust"; e.g.,
//!   things that relate to command-line parameters, file layouts, network
//!   messages, etc.
//

// Declare submodules
pub mod address;
pub mod arch;
pub mod checking;
pub mod common;
pub mod container;
pub mod data;
pub mod driving;
pub mod errors;
pub mod os;
pub mod package;
pub mod planning;
pub mod policy;
pub mod profiling;
pub mod registering;
pub mod version;
pub mod working;