spin_common/lib.rs
1//! Spin common modules
2
3#![deny(missing_docs)]
4
5// In order to prevent this crate from becoming a dumping ground, we observe
6// the following practices:
7// - No code in the root module; everything must be in a focused `pub mod`
8// - No dependencies on other Spin crates
9// - Code should have at least 2 dependents
10
11pub mod arg_parser;
12pub mod data_dir;
13pub mod paths;
14pub mod sha256;
15pub mod sloth;
16pub mod ui;
17pub mod url;