2015-02-25 13:37:25 +00:00
|
|
|
[package]
|
|
|
|
|
|
|
|
name = "clap"
|
2015-05-17 13:55:23 +00:00
|
|
|
version = "0.8.6"
|
2015-02-25 13:37:25 +00:00
|
|
|
authors = ["Kevin K. <kbknapp@gmail.com>"]
|
2015-05-05 21:27:36 +00:00
|
|
|
exclude = ["examples/*", "clap-tests/*"]
|
2015-04-29 03:03:55 +00:00
|
|
|
description = "A simple to use, efficient, and full featured Command Line Argument Parser"
|
2015-03-01 00:56:43 +00:00
|
|
|
repository = "https://github.com/kbknapp/clap-rs.git"
|
2015-05-01 15:13:41 +00:00
|
|
|
documentation = "http://kbknapp.github.io/clap-rs"
|
2015-03-01 00:56:43 +00:00
|
|
|
readme = "README.md"
|
|
|
|
|
2015-03-04 13:32:55 +00:00
|
|
|
keywords = ["argument", "command", "arg", "parser", "parse"]
|
2015-03-01 00:56:43 +00:00
|
|
|
|
2015-03-04 13:32:55 +00:00
|
|
|
license = "MIT"
|
2015-03-24 18:35:47 +00:00
|
|
|
|
2015-04-29 03:03:55 +00:00
|
|
|
[features]
|
2015-05-05 21:27:36 +00:00
|
|
|
default=["suggestions", "color"]
|
2015-05-05 16:08:09 +00:00
|
|
|
suggestions=["strsim"]
|
2015-05-05 21:27:36 +00:00
|
|
|
color = ["ansi_term"]
|
2015-04-29 03:03:55 +00:00
|
|
|
|
2015-04-29 03:49:59 +00:00
|
|
|
# for building with nightly and unstable features
|
2015-04-29 03:03:55 +00:00
|
|
|
unstable=[]
|
2015-05-05 16:08:09 +00:00
|
|
|
|
|
|
|
[dependencies.strsim]
|
|
|
|
version = "*"
|
|
|
|
optional = true
|
|
|
|
|
2015-05-05 21:27:36 +00:00
|
|
|
[dependencies.ansi_term]
|
|
|
|
version = "*"
|
|
|
|
optional = true
|