perl-module-resolution-path
Resolve a Perl module name to a workspace-safe filesystem path candidate.
This crate is the path-first leg of module resolution. It searches include
paths under a workspace root, validates the candidate stays inside that root,
and falls back to root/lib/<module>.pm when needed.
Pipeline
perl-module-pathconverts names to path strings.perl-module-resolution-pathapplies workspace-safe search order.perl-module-resolution-uritakes the same module name and returns afile://URI instead of a path.
Key API
resolve_module_path
Example
use resolve_module_path;
use Path;
let root = new;
let path = resolve_module_path;
assert!;