aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
diff options
context:
space:
mode:
authorJoel Galenson <jgalenson@google.com>2021-08-13 03:32:32 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2021-08-13 03:32:32 +0000
commiteae296d80fc703125592a9f0063e12948f4c8343 (patch)
treeee0741f958fe697978838edb95ab00e50af08beb /Cargo.toml.orig
parenta5966aef26c201a8e126b909897037f6a0819486 (diff)
parentff8245d7b3988f916e42a6d6ca3183b852e85f4a (diff)
downloadwhich-eae296d80fc703125592a9f0063e12948f4c8343.tar.gz
Upgrade rust/crates/which to 4.2.2 am: 9e4f7ef037 am: 86f4c737d3 am: ed6ff50032 am: c0a4e4addc am: ff8245d7b3
Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/which/+/1790955 Change-Id: I36bbdf216c96588bc09bdbb099ad064972f10b53
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"