Add a bug report + completions command(not complete yet) so that new users can easily submit bugs to us, and I wanted completions for bb (super easy with clap) --------- Co-authored-by: Gerald Pinder <gmpinder@gmail.com>
14 lines
415 B
Rust
14 lines
415 B
Rust
//! 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(clippy::module_name_repetitions)]
|
|
|
|
shadow_rs::shadow!(shadow);
|
|
|
|
pub mod commands;
|
|
pub mod module_recipe;
|
|
mod ops;
|