diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-06-29 15:31:58 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-06-29 15:31:58 +0800 |
| commit | 5b1593afa467df256fcd7076967d305bebbb21ee (patch) | |
| tree | 5740576ecc364ed0064daff55c86efa2a3aed738 /examples | |
| parent | 709b672731bcc1b68209cadc38e0de78d7c28c03 (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 'examples')
| -rw-r--r-- | examples/example-combine-pathf-dispatch-tree/build.rs | 2 | ||||
| -rw-r--r-- | examples/example-pathfinder/build.rs | 2 |
2 files changed, 2 insertions, 2 deletions
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(); } diff --git a/examples/example-pathfinder/build.rs b/examples/example-pathfinder/build.rs index 1dcc2fc..e96f978 100644 --- a/examples/example-pathfinder/build.rs +++ b/examples/example-pathfinder/build.rs @@ -1,4 +1,4 @@ -use mingling::builds::analyze_and_build_type_mapping; +use mingling::build::analyze_and_build_type_mapping; fn main() { // --------- IMPORTANT --------- |
