[package]
edition = "2024"
rust-version = "1.92"
name = "perl-module-resolution-path"
version = "0.11.0"
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 Perl module path resolution within workspace roots"
homepage = "https://github.com/EffortlessMetrics/perl-lsp"
documentation = "https://docs.rs/perl-module-resolution-path"
readme = "README.md"
keywords = [
"perl",
"module",
"path",
"workspace",
"lsp",
]
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"
path = "src/lib.rs"
[[test]]
name = "module_resolution_path_bdd"
path = "tests/module_resolution_path_bdd.rs"
[[test]]
name = "module_resolution_path_fuzz"
path = "tests/module_resolution_path_fuzz.rs"
[[test]]
name = "module_resolution_path_integration"
path = "tests/module_resolution_path_integration.rs"
[[test]]
name = "module_resolution_path_prop"
path = "tests/module_resolution_path_prop.rs"
[dependencies.perl-module-path]
version = "0.11.0"
[dependencies.perl-path-security]
version = "0.11.0"
[dev-dependencies.proptest]
version = "1.9.0"
[dev-dependencies.tempfile]
version = "3.24.0"
[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"))',
]