blue-build 0.5.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
13
14
15
16
//! The root library for blue-build.

#![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)]

#[cfg(feature = "init")]
pub mod init;

pub mod build;
pub mod local;
mod ops;
pub mod template;