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/lib.rs | 19 +++++-------------- 1 file changed, 5 insertions(+), 14 deletions(-) (limited to 'mling/src/lib.rs') diff --git a/mling/src/lib.rs b/mling/src/lib.rs index 0e122f3..1bf38a7 100644 --- a/mling/src/lib.rs +++ b/mling/src/lib.rs @@ -5,23 +5,14 @@ use mingling::{ res::ResExitCode, }; -pub mod cli; -pub use cli::*; - mod cargo_style; pub use cargo_style::*; + +pub mod cli; pub mod display; +pub mod errors; +pub mod pkg_mgr; +pub mod proj_mgr; pub mod res; -mod pkg_mgr; -pub use pkg_mgr::*; - -mod proj_mgr; -pub use proj_mgr::*; - -mod errors; -pub use errors::*; - -use crate::display::markdown; - gen_program!(); -- cgit