2015-02-25 08:37:25 -05:00
|
|
|
[package]
|
|
|
|
|
|
|
|
name = "clap"
|
2015-11-20 08:24:31 -05:00
|
|
|
version = "1.5.3"
|
2015-02-25 08:37:25 -05:00
|
|
|
authors = ["Kevin K. <kbknapp@gmail.com>"]
|
2015-11-12 10:16:22 -05:00
|
|
|
exclude = ["examples/*", "clap-tests/*", "tests/*", "benches/*", "*.png", "clap-perf/*"]
|
2015-04-28 23:03:55 -04:00
|
|
|
description = "A simple to use, efficient, and full featured Command Line Argument Parser"
|
2015-02-28 19:56:43 -05:00
|
|
|
repository = "https://github.com/kbknapp/clap-rs.git"
|
2015-05-01 17:13:41 +02:00
|
|
|
documentation = "http://kbknapp.github.io/clap-rs"
|
2015-02-28 19:56:43 -05:00
|
|
|
readme = "README.md"
|
2015-05-17 18:26:03 -04:00
|
|
|
license = "MIT"
|
2015-03-04 08:32:55 -05:00
|
|
|
keywords = ["argument", "command", "arg", "parser", "parse"]
|
2015-02-28 19:56:43 -05:00
|
|
|
|
2015-09-30 17:14:48 -04:00
|
|
|
[dependencies]
|
2015-12-08 03:05:19 -05:00
|
|
|
bitflags = "0.3.3"
|
2015-11-13 09:37:24 -05:00
|
|
|
vec_map = "0.4"
|
2015-11-04 03:00:53 -05:00
|
|
|
ansi_term = { version = "~0.7", optional = true }
|
2015-10-19 15:00:13 +03:00
|
|
|
strsim = { version = "~0.4.0", optional = true }
|
2015-10-19 14:46:24 +03:00
|
|
|
yaml-rust = { version = "~0.2.2", optional = true }
|
2015-12-08 03:05:19 -05:00
|
|
|
clippy = { version = "~0.0.29", optional = true }
|
2015-08-25 17:28:38 -04:00
|
|
|
|
|
|
|
[features]
|
2015-10-29 01:36:12 -04:00
|
|
|
default = ["suggestions", "color"]
|
2015-10-19 15:00:13 +03:00
|
|
|
suggestions = ["strsim"]
|
2015-10-29 01:36:12 -04:00
|
|
|
color = ["ansi_term"]
|
|
|
|
yaml = ["yaml-rust"]
|
|
|
|
lints = ["clippy", "nightly"]
|
|
|
|
nightly = [] # for building with nightly and unstable features
|
|
|
|
unstable = ["lints", "nightly"] # for building with travis-cargo
|
|
|
|
debug = [] # for building with debug messages
|
2015-08-25 17:28:38 -04:00
|
|
|
|