[package]
edition = "2024"
rust-version = "1.88"
name = "string-le"
version = "0.2.0"
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 string in a codebase, with its position, so a person can read them"
homepage = "https://letools.dev/tools/string-le"
readme = "README.md"
keywords = [
"i18n",
"hardcoded",
"strings",
"localization",
"extract",
]
categories = [
"command-line-utilities",
"development-tools",
"internationalization",
"text-processing",
"parsing",
]
license = "MIT"
repository = "https://github.com/nolindnaidoo/string-le"
[[bin]]
name = "string-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.ignore]
version = "0.4"
[dependencies.jsonc-parser]
version = "0.33"
[dependencies.regex]
version = "1"
[dependencies.rust-ini]
version = "0.21"
[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]
pedantic = "warn"
[lints.rust]
unsafe_code = "forbid"
[profile.release]
lto = true
codegen-units = 1
panic = "abort"
strip = true