From 0c97eee05e8cd99b17ad17827d79afa739957db1 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Sun, 28 Jun 2026 05:24:31 +0800 Subject: feat(mingling_pathf): add module path resolution and error handling Introduce the core pathfinding infrastructure with `ModulePathMapping`, `MappingItem`, and `MinglingPathfinderError` types. Support recursive module traversal, `pub use` re-export hoisting, and standard Rust module resolution rules. --- mingling_pathf/src/lib.rs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'mingling_pathf/src/lib.rs') diff --git a/mingling_pathf/src/lib.rs b/mingling_pathf/src/lib.rs index e69de29..5e4921b 100644 --- a/mingling_pathf/src/lib.rs +++ b/mingling_pathf/src/lib.rs @@ -0,0 +1,3 @@ +pub mod module_pathf; +pub mod error; +pub mod patterns; -- cgit