preamble2 0.0.1

Modern rust project manager library re-written from the ground up.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Pipeline
//!
//! todo

/// Pipeline
///
/// The pipeline orchestrates project construction and generation.
#[derive(Debug, Clone, PartialEq, Eq, Default)]
pub struct Pipeline {
    /// The verbosity level of the pipeline.
    pub verbosity: u8,
}