aboutsummaryrefslogtreecommitdiff
path: root/mingling_core/src/builds.rs
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-06-29 15:31:58 +0800
committer魏曹先生 <1992414357@qq.com>2026-06-29 15:31:58 +0800
commit5b1593afa467df256fcd7076967d305bebbb21ee (patch)
tree5740576ecc364ed0064daff55c86efa2a3aed738 /mingling_core/src/builds.rs
parent709b672731bcc1b68209cadc38e0de78d7c28c03 (diff)
refactor(core): move pathf module under builds and rename to buildHEADunreleasedmain
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`.
Diffstat (limited to 'mingling_core/src/builds.rs')
-rw-r--r--mingling_core/src/builds.rs8
1 files changed, 3 insertions, 5 deletions
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;