perl-module 0.13.0-rc1

Perl module resolution, import analysis, and refactoring — unified facade
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Deterministic and secure Perl module resolution helpers.
//!
//! Combines URI and filesystem module resolution strategies. The `use_lib`
//! submodule extracts additional include paths from `use lib` pragmas and
//! `FindBin` patterns in Perl source text.

pub mod path;
pub mod uri;
pub mod use_lib;

pub use path::resolve_module_path;
pub use uri::{
    IncRoot, IncRootKind, ModuleUriResolution, resolve_module_uri,
    resolve_module_uri_with_effective_inc,
};