[package]
edition = "2024"
rust-version = "1.88"
name = "paths-le"
version = "0.2.1"
authors = ["Nolin D Naidoo"]
build = false
exclude = [
"AGENTS.md",
"CLAUDE.md",
"rust-toolchain.toml",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Extract every file path in a codebase, and say whether it still points at anything"
homepage = "https://letools.dev/tools/paths-le"
readme = "README.md"
keywords = [
"paths",
"broken-links",
"symlink",
"filesystem",
"link-checker",
]
categories = [
"command-line-utilities",
"filesystem",
"development-tools",
"text-processing",
"parsing",
]
license = "MIT"
repository = "https://github.com/nolindnaidoo/paths-le"
[[bin]]
name = "paths-le"
path = "src/main.rs"
[[test]]
name = "budget"
path = "tests/budget.rs"
[[test]]
name = "contracts"
path = "tests/contracts.rs"
[[test]]
name = "coverage_matrix"
path = "tests/coverage_matrix.rs"
[[test]]
name = "hazards"
path = "tests/hazards.rs"
[[test]]
name = "platform"
path = "tests/platform.rs"
[[test]]
name = "scenarios"
path = "tests/scenarios.rs"
[dependencies.csv]
version = "1"
[dependencies.fancy-regex]
version = "0.19"
[dependencies.ignore]
version = "0.4"
[dependencies.jsonc-parser]
version = "0.33"
[dependencies.regex]
version = "1"
[dependencies.saphyr]
version = "0.0.11"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.toml]
version = "1"
features = ["preserve_order"]
[lints.clippy]
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
must_use_candidate = "allow"
struct_excessive_bools = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"
[profile.release]
lto = "thin"
codegen-units = 1
overflow-checks = true
strip = true