blue-build 0.6.0

A CLI tool built for creating Containerfile templates based on the Ublue Community Project
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! The root library for blue-build.
#![warn(clippy::correctness, clippy::suspicious, clippy::perf, clippy::style)]
#![doc = include_str!("../README.md")]
#![forbid(unsafe_code)]
#![allow(clippy::module_name_repetitions)]

shadow_rs::shadow!(shadow);

pub mod commands;
pub mod constants;
pub mod module_recipe;
mod ops;