[package]
edition = "2024"
rust-version = "1.92"
name = "perl-module-resolution"
version = "0.12.1"
authors = ["Steven Zimmerman, CPA <git@effortlesssteven.com>"]
build = false
include = [
"src/**",
"tests/**",
"Cargo.toml",
"README.md",
"LICENSE*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Deterministic and secure Perl module resolution for workspace and @INC search"
homepage = "https://github.com/EffortlessMetrics/perl-lsp"
documentation = "https://docs.rs/perl-module-resolution"
readme = "README.md"
keywords = [
"perl",
"module",
"resolution",
"lsp",
"workspace",
]
categories = [
"development-tools",
"text-editors",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/EffortlessMetrics/perl-lsp"
resolver = "2"
[lib]
name = "perl_module_resolution"
path = "src/lib.rs"
[[test]]
name = "module_resolution_bdd"
path = "tests/module_resolution_bdd.rs"
[[test]]
name = "module_resolution_comprehensive"
path = "tests/module_resolution_comprehensive.rs"
[[test]]
name = "module_resolution_edge_cases"
path = "tests/module_resolution_edge_cases.rs"
[[test]]
name = "module_resolution_fuzz"
path = "tests/module_resolution_fuzz.rs"
[[test]]
name = "module_resolution_goto_definition"
path = "tests/module_resolution_goto_definition.rs"
[[test]]
name = "module_resolution_integration"
path = "tests/module_resolution_integration.rs"
[[test]]
name = "module_resolution_prop"
path = "tests/module_resolution_prop.rs"
[[test]]
name = "module_resolution_use_require"
path = "tests/module_resolution_use_require.rs"
[dependencies.perl-module-resolution-path]
version = "0.12.1"
[dependencies.perl-module-resolution-uri]
version = "0.12.1"
[dev-dependencies.proptest]
version = "1.9.0"
[dev-dependencies.tempfile]
version = "3.24.0"
[dev-dependencies.url]
version = "2.5.8"
[lints.clippy]
collapsible_if = "allow"
dbg_macro = "deny"
expect_used = "deny"
panic = "deny"
todo = "deny"
unimplemented = "deny"
unwrap_used = "deny"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = [
"cfg(ci)",
'cfg(feature, values("slow_tests"))',
]