diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-06-28 05:24:31 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-06-28 05:24:31 +0800 |
| commit | 0c97eee05e8cd99b17ad17827d79afa739957db1 (patch) | |
| tree | 780d8a2b0c576eac8b2f56a2a30a24f7395cf97d /mingling_pathf/src/lib.rs | |
| parent | 69250e8f99c16c70ffe04fccf3192eb648f6e4f5 (diff) | |
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.
Diffstat (limited to 'mingling_pathf/src/lib.rs')
| -rw-r--r-- | mingling_pathf/src/lib.rs | 3 |
1 files changed, 3 insertions, 0 deletions
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; |
