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. --- Cargo.lock | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Cargo.lock') diff --git a/Cargo.lock b/Cargo.lock index 64d1da9..725b4d9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -442,6 +442,9 @@ dependencies = [ [[package]] name = "mingling_pathf" version = "0.2.0" +dependencies = [ + "syn", +] [[package]] name = "mio" -- cgit