spin_templates/
lib.rs

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
//! Package for working with Wasm component templates.

#![deny(missing_docs)]

mod app_info;
mod cancellable;
mod constraints;
mod directory;
mod environment;
mod filters;
mod git;
mod interaction;
mod manager;
mod reader;
mod renderer;
mod run;
mod source;
mod store;
mod template;
mod toml;
mod writer;

pub use manager::*;
pub use run::{Run, RunOptions};
pub use source::TemplateSource;
pub use template::{Template, TemplateVariantInfo};

#[cfg(test)]
mod test_built_ins;