diff options
author | Bert Belder <bertbelder@gmail.com> | 2019-03-31 17:54:58 -0400 |
---|---|---|
committer | Bert Belder <bertbelder@gmail.com> | 2019-03-31 17:55:03 -0400 |
commit | ff1c80d6d896a3c1cb45d767a6c667ce99eb000b (patch) | |
tree | cda5d7dcd1eb49ff2b836008792ead368ad167c6 /cli | |
parent | 97265895baaf7e90180f10f7ef741e9bbf1dcfd0 (diff) |
third_party: add rust crate 'clap'
Diffstat (limited to 'cli')
-rw-r--r-- | cli/BUILD.gn | 1 | ||||
-rw-r--r-- | cli/Cargo.toml | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/cli/BUILD.gn b/cli/BUILD.gn index 32c00d8cf..ffc13891c 100644 --- a/cli/BUILD.gn +++ b/cli/BUILD.gn @@ -12,6 +12,7 @@ main_extern = [ "$rust_build:ansi_term", "$rust_build:atty", + "$rust_build:clap", "$rust_build:dirs", "$rust_build:flatbuffers", "$rust_build:futures", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 6c25486a1..f508e59eb 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -20,6 +20,7 @@ deno = { path = "../core" } ansi_term = "0.11.0" atty = "0.2.11" +clap = "2.32.0" dirs = "1.0.5" flatbuffers = "0.5.0" futures = "0.1.25" |