From 9c8fe13c2629a4318bd12815c07cef1371ba85a2 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Fri, 14 Aug 2026 17:47:15 +0800 Subject: feat(core): move config types to public config module Refactor program configuration types into a dedicated public `config` module under `mingling_core`, making `StructuralRendererSetting` accessible via `mingling_core::config` instead of the crate root. Update all internal references and setup modules to use the new `config::` path convention. --- mingling_core/src/program/config.rs | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'mingling_core/src/program/config.rs') diff --git a/mingling_core/src/program/config.rs b/mingling_core/src/program/config.rs index 86b8c23..dae3f0a 100644 --- a/mingling_core/src/program/config.rs +++ b/mingling_core/src/program/config.rs @@ -1,4 +1,28 @@ // Doc Not Optimize + +//! Config module for program output settings and user context. +//! +//! This module provides configuration types and settings for controlling +//! how the program outputs errors, rendered results, panic messages, +//! verbosity levels, colors, progress indicators, and other user-defined +//! context values used throughout the program lifecycle. +//! +//! The module includes the following items: +//! - [`ErrorOutput`]: Output mode for error messages. +//! - [`RenderOutput`]: Output mode for rendered results. +//! - [`PanicSilence`]: Panic message handling. +//! - [`Verbosity`]: Verbosity level for program output. +//! - [`ColorOutput`]: Color output mode. +//! - [`ProgressOutput`]: Progress indicator mode. +//! - [`ProgramStdoutSetting`]: Program stdout settings. +//! - [`ClapHelpPrintBehaviour`]: Behavior when Clap Dispatcher outputs help information. +//! - [`ConfirmationMode`]: Confirmation mode for user prompts. +//! - [`ExecutionMode`]: Execution mode. +//! - [`InteractionMode`]: Interaction mode. +//! - [`YesAssumption`]: Yes assumption mode for prompts. +//! - [`ProgramUserContext`]: Program user context. +//! - [`StructuralRendererSetting`]: Settings for the structural renderer output format. + /// Output mode for error messages #[derive(Debug, Clone, Copy, PartialEq, Eq)] pub enum ErrorOutput { -- cgit