[package]
edition = "2024"
rust-version = "1.88"
name = "urls-le"
version = "0.2.2"
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 URL in a codebase, with its protocol and exact position"
homepage = "https://letools.dev/tools/urls-le"
readme = "README.md"
keywords = [
"url",
"link-checker",
"links",
"extract",
"lychee",
]
categories = [
"command-line-utilities",
"development-tools",
"web-programming",
"text-processing",
"parsing",
]
license = "MIT"
repository = "https://github.com/nolindnaidoo/urls-le"
[[bin]]
name = "urls-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.ignore]
version = "0.4"
[dependencies.regex]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.toml]
version = "1"
features = ["preserve_order"]
[dependencies.url]
version = "2"
[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"
[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