spin_common/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Spin common modules

#![deny(missing_docs)]

// In order to prevent this crate from becoming a dumping ground, we observe
// the following practices:
// - No code in the root module; everything must be in a focused `pub mod`
// - No dependencies on other Spin crates
// - Code should have at least 2 dependents

pub mod arg_parser;
pub mod data_dir;
pub mod paths;
pub mod sha256;
pub mod sloth;
pub mod ui;
pub mod url;