From 5b1593afa467df256fcd7076967d305bebbb21ee Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Mon, 29 Jun 2026 15:31:58 +0800 Subject: refactor(core): move pathf module under builds and rename to build Migrate `mingling_core::pathf` into `mingling_core::builds::pathf` and re-export from `mingling::build`. Update all references from `mingling::builds` and `mingling::pathf` to `mingling::build`. --- mingling_core/src/builds.rs | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'mingling_core/src/builds.rs') diff --git a/mingling_core/src/builds.rs b/mingling_core/src/builds.rs index 17dc7d2..3c52907 100644 --- a/mingling_core/src/builds.rs +++ b/mingling_core/src/builds.rs @@ -2,8 +2,6 @@ #[cfg(feature = "comp")] pub mod comp; -#[cfg(all(feature = "builds", feature = "pathf"))] -pub use mingling_pathf::analyze_and_build_type_mapping; - -#[cfg(all(feature = "builds", feature = "pathf"))] -pub use mingling_pathf::analyze_and_build_type_mapping_for; +#[doc(hidden)] +#[cfg(feature = "pathf")] +pub mod pathf; -- cgit