blue-build 0.5.5

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(
    html_logo_url = "https://gitlab.com/wunker-bunker/blue-build/-/raw/main/logos/BlueBuild-logo.png"
)]
#![doc = include_str!("../README.md")]
#![forbid(unsafe_code)]
#![allow(unused_imports)]
#![allow(clippy::module_name_repetitions)]

pub mod commands;
mod ops;