chore: Set shadow back to its original location

This commit is contained in:
Gerald Pinder 2024-11-06 20:05:57 -05:00
parent 0dbf7e8e46
commit b3a8b65b21
4 changed files with 4 additions and 8 deletions

View file

@ -5,7 +5,7 @@ use log::error;
use clap::{command, crate_authors, Parser, Subcommand};
use clap_verbosity_flag::{InfoLevel, Verbosity};
use crate::info::shadow;
use crate::shadow;
pub mod bug_report;
pub mod build;

View file

@ -16,7 +16,7 @@ use std::time::Duration;
use super::BlueBuildCommand;
use crate::info::shadow;
use crate::shadow;
#[derive(Default, Debug, Clone, Builder, Args)]
pub struct BugReportRecipe {

View file

@ -20,7 +20,7 @@ use miette::{IntoDiagnostic, Result};
#[cfg(feature = "validate")]
use crate::commands::validate::ValidateCommand;
use crate::info::shadow;
use crate::shadow;
use super::BlueBuildCommand;

View file

@ -1,11 +1,7 @@
//! The root library for blue-build.
#![doc = include_str!("../README.md")]
#![allow(clippy::needless_raw_string_hashes)]
pub(crate) mod info {
#![allow(clippy::too_long_first_doc_paragraph)]
shadow_rs::shadow!(shadow);
}
shadow_rs::shadow!(shadow);
pub mod commands;
pub mod rpm_ostree_status;