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/src/setups/picker/structural_renderer.rs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'mingling/src/setups/picker/structural_renderer.rs') diff --git a/mingling/src/setups/picker/structural_renderer.rs b/mingling/src/setups/picker/structural_renderer.rs index bd9b401..998fa16 100644 --- a/mingling/src/setups/picker/structural_renderer.rs +++ b/mingling/src/setups/picker/structural_renderer.rs @@ -48,27 +48,27 @@ where fn setup(self, program: &mut Program) { #[cfg(feature = "json_serde_fmt")] if program.pick_flag(&crate::consts::JSON_FLAG) { - program.structural_renderer_name = crate::StructuralRendererSetting::Json; + program.structural_renderer_name = crate::config::StructuralRendererSetting::Json; } #[cfg(feature = "json_serde_fmt")] if program.pick_flag(&crate::consts::JSON_PRETTY_FLAG) { - program.structural_renderer_name = crate::StructuralRendererSetting::JsonPretty; + program.structural_renderer_name = crate::config::StructuralRendererSetting::JsonPretty; } #[cfg(feature = "yaml_serde_fmt")] if program.pick_flag(&crate::consts::YAML_FLAG) { - program.structural_renderer_name = crate::StructuralRendererSetting::Yaml; + program.structural_renderer_name = crate::config::StructuralRendererSetting::Yaml; } #[cfg(feature = "toml_serde_fmt")] if program.pick_flag(&crate::consts::TOML_FLAG) { - program.structural_renderer_name = crate::StructuralRendererSetting::Toml; + program.structural_renderer_name = crate::config::StructuralRendererSetting::Toml; } #[cfg(feature = "ron_serde_fmt")] if program.pick_flag(&crate::consts::RON_FLAG) { - program.structural_renderer_name = crate::StructuralRendererSetting::Ron; + program.structural_renderer_name = crate::config::StructuralRendererSetting::Ron; } #[cfg(feature = "ron_serde_fmt")] if program.pick_flag(&crate::consts::RON_PRETTY_FLAG) { - program.structural_renderer_name = crate::StructuralRendererSetting::RonPretty; + program.structural_renderer_name = crate::config::StructuralRendererSetting::RonPretty; } } } -- cgit