[package]
edition = "2024"
rust-version = "1.85"
name = "pathlint"
version = "0.0.2"
authors = ["ShortArrow <bamboogeneral@shortarrow.jp>"]
build = false
exclude = [
"/.github/",
"/docs/",
"/tests/fixtures/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Lint the PATH environment variable against declarative ordering rules."
homepage = "https://github.com/ShortArrow/pathlint"
documentation = "https://docs.rs/pathlint"
readme = "README.md"
keywords = [
"path",
"lint",
"shell",
"cli",
"doctor",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ShortArrow/pathlint"
[lib]
name = "pathlint"
path = "src/lib.rs"
[[bin]]
name = "pathlint"
path = "src/main.rs"
[[test]]
name = "catalog"
path = "tests/catalog.rs"
[[test]]
name = "check"
path = "tests/check.rs"
[[test]]
name = "doctor"
path = "tests/doctor.rs"
[[test]]
name = "init"
path = "tests/init.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.thiserror]
version = "2"
[dependencies.toml]
version = "0.9"
[dev-dependencies.tempfile]
version = "3"
[target."cfg(windows)".dependencies.winreg]
version = "0.55"