third_party_rust_which-rs/Cargo.toml
2023-01-20 17:11:35 +08:00

27 lines
676 B
TOML

[package]
name = "which"
version = "4.4.0"
edition = "2018"
authors = ["Harry Fei <tiziyuanfang@gmail.com>"]
repository = "https://github.com/harryfei/which-rs.git"
documentation = "https://docs.rs/which/"
license = "MIT"
description = "A Rust equivalent of Unix command \"which\". Locate installed executable in cross platforms."
readme = "README.md"
categories = ["os", "filesystem"]
keywords = ["which", "which-rs", "unix", "command"]
[dependencies]
either = "1.6.1"
libc = "0.2.121"
regex = { version = "1.5.5", optional = true }
[target.'cfg(windows)'.dependencies]
once_cell = "1"
[dev-dependencies]
tempfile = "3.3.0"
[package.metadata.docs.rs]
all-features = true