aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
blob: ec31c55bf4f21420516ef68f0a7b04e2336ab011 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[package]
name = "which"
version = "4.2.4"
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"
libc = "0.2.65"
regex = { version = "1.5.4", optional = true }

[target.'cfg(windows)'.dependencies]
lazy_static = "1"

[dev-dependencies]
tempdir = "0.3.7"

[package.metadata.docs.rs]
all-features = true