[package]
edition = "2024"
rust-version = "1.97.1"
name = "whi"
version = "0.8.1"
authors = ["Alexander Knott <alexander.knott@posteo.de>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Stupid simple PATH management"
readme = "README.md"
keywords = [
"cli",
"path",
"which",
"executable",
"unix",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/alexykn/whi"
[lib]
name = "whi"
path = "src/lib.rs"
[[bin]]
name = "whi"
path = "src/bin/whi.rs"
[[test]]
name = "config"
path = "tests/config.rs"
[[test]]
name = "io"
path = "tests/io.rs"
[[test]]
name = "misc"
path = "tests/misc.rs"
[[test]]
name = "path"
path = "tests/path.rs"
[[test]]
name = "session"
path = "tests/session.rs"
[[test]]
name = "support"
path = "tests/support.rs"
[dependencies.clap]
version = "4.6.4"
features = ["derive"]
[dependencies.libc]
version = "1.0.0-alpha.4"
[dev-dependencies.tempfile]
version = "3.27.0"