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`. --- examples/example-combine-pathf-dispatch-tree/build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples/example-combine-pathf-dispatch-tree/build.rs') diff --git a/examples/example-combine-pathf-dispatch-tree/build.rs b/examples/example-combine-pathf-dispatch-tree/build.rs index 4c66258..d909431 100644 --- a/examples/example-combine-pathf-dispatch-tree/build.rs +++ b/examples/example-combine-pathf-dispatch-tree/build.rs @@ -1,3 +1,3 @@ fn main() { - mingling::pathf::analyze_and_build_type_mapping().unwrap(); + mingling::build::analyze_and_build_type_mapping().unwrap(); } -- cgit