aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
diff options
context:
space:
mode:
authorJoel Galenson <jgalenson@google.com>2021-08-09 10:51:09 -0700
committerJoel Galenson <jgalenson@google.com>2021-08-09 10:51:09 -0700
commit9e4f7ef0370b6701ac0afbf3c12a2ecaaa6cb439 (patch)
treeee0741f958fe697978838edb95ab00e50af08beb /Cargo.toml.orig
parent47e0a9298874d3d47dd4d2ce980adce7df3ad730 (diff)
downloadwhich-9e4f7ef0370b6701ac0afbf3c12a2ecaaa6cb439.tar.gz
Upgrade rust/crates/which to 4.2.2
Test: make Change-Id: I729740e4bb2fb5c55d70cfbe046eff371b4e8252
Diffstat (limited to 'Cargo.toml.orig')
-rw-r--r--Cargo.toml.orig6
1 files changed, 5 insertions, 1 deletions
diff --git a/Cargo.toml.orig b/Cargo.toml.orig
index c3c472e..12b29d3 100644
--- a/Cargo.toml.orig
+++ b/Cargo.toml.orig
@@ -1,6 +1,6 @@
[package]
name = "which"
-version = "4.1.0"
+version = "4.2.2"
edition = "2018"
authors = ["Harry Fei <tiziyuanfang@gmail.com>"]
repository = "https://github.com/harryfei/which-rs.git"
@@ -14,6 +14,10 @@ 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"