From 07bf5bb372fc94f346b039ad9eecfb64c8a1ff46 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Mon, 29 Jun 2026 04:27:39 +0800 Subject: feat(mling): enable pathf feature and run type mapping build Add the `pathf` feature to mingling dependency and invoke `analyze_and_build_type_mapping` during the build script. Reorganize internal module visibility from `mod + pub use` to direct `pub mod`. --- mling/src/proj_mgr/mod.rs | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) (limited to 'mling/src/proj_mgr/mod.rs') diff --git a/mling/src/proj_mgr/mod.rs b/mling/src/proj_mgr/mod.rs index d0c4cbf..e0a4216 100644 --- a/mling/src/proj_mgr/mod.rs +++ b/mling/src/proj_mgr/mod.rs @@ -4,19 +4,11 @@ use mingling::{ macros::{dispatcher, program_setup}, }; -mod generator; -pub use generator::*; - +pub mod checklist_reader; +pub mod generator; pub mod metadata; - -mod checklist_reader; -pub use checklist_reader::*; - -mod show_binaries; -pub use show_binaries::*; - -mod show_directories; -pub use show_directories::*; +pub mod show_binaries; +pub mod show_directories; dispatcher!("gen", CMDGenerateProject => EntryGenerateProject); -- cgit