about summary refs log tree commit diff
diff options
context:
space:
mode:
authorCaleb Cartwright <caleb.cartwright@outlook.com>2022-06-13 17:01:44 -0500
committerCaleb Cartwright <caleb.cartwright@outlook.com>2022-06-13 17:01:44 -0500
commit3733e45d97896a3880ac3dba8208a5fdba9fd9c7 (patch)
treeeef281e9af6bc02a77afacc738b0b4404c49458d
parentf367f4dee0b11ef41cb60d95c163c28d965d0946 (diff)
downloadrust-3733e45d97896a3880ac3dba8208a5fdba9fd9c7.tar.gz
rust-3733e45d97896a3880ac3dba8208a5fdba9fd9c7.zip
deps: add clap to workspace hack
-rw-r--r--Cargo.lock1
-rw-r--r--src/tools/rustc-workspace-hack/Cargo.toml1
2 files changed, 2 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 014eb7eb0fd..4322fc56c44 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -3512,6 +3512,7 @@ version = "1.0.0"
 dependencies = [
  "bstr",
  "byteorder",
+ "clap 3.1.1",
  "crossbeam-utils",
  "libc",
  "libz-sys",
diff --git a/src/tools/rustc-workspace-hack/Cargo.toml b/src/tools/rustc-workspace-hack/Cargo.toml
index a79290e7a6b..992a2e83f63 100644
--- a/src/tools/rustc-workspace-hack/Cargo.toml
+++ b/src/tools/rustc-workspace-hack/Cargo.toml
@@ -73,6 +73,7 @@ features = [
 [dependencies]
 bstr = { version = "0.2.13", features = ["default"] }
 byteorder = { version = "1", features = ['default', 'std'] }
+clap = { version = "3.1.1", features = ["lazy_static", "derive", "clap_derive"]}
 curl-sys = { version = "0.4.13", features = ["http2", "libnghttp2-sys"], optional = true }
 crossbeam-utils = { version = "0.8.0", features = ["nightly"] }
 libc = { version = "0.2.79", features = ["align"] }