* feat: run clippy + BlueBuildTrait * chore: add default run impl; more clippy * chore: remove vscode folder; not needed * cleanups * Move to commands.rs * Move functions; remove run function implementation from each command * Remove run impl from init commands * Use error log --------- Co-authored-by: Gerald Pinder <gmpinder@gmail.com>
12 lines
389 B
Rust
12 lines
389 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(unused_imports)]
|
|
#![allow(clippy::module_name_repetitions)]
|
|
|
|
pub mod commands;
|
|
mod ops;
|